rust/tests/ui/unnecessary_ref.rs
2018-05-28 13:07:19 +02:00

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;
}