mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
12 lines
202 B
Rust
12 lines
202 B
Rust
#![feature(tool_attributes)]
|
|
#![feature(stmt_expr_attributes)]
|
|
|
|
struct Outer {
|
|
inner: u32,
|
|
}
|
|
|
|
#[deny(ref_in_deref)]
|
|
fn main() {
|
|
let outer = Outer { inner: 0 };
|
|
let inner = (&outer).inner;
|
|
}
|