rust-clippy/tests/ui/unnecessary_ref.rs
2018-08-29 11:08:29 -07:00

14 lines
235 B
Rust

#![feature(tool_lints)]
#![feature(tool_attributes)]
#![feature(stmt_expr_attributes)]
struct Outer {
inner: u32,
}
#[deny(clippy::ref_in_deref)]
fn main() {
let outer = Outer { inner: 0 };
let inner = (&outer).inner;
}