rust-clippy/tests/ui/unnecessary_ref.rs

15 lines
225 B
Rust
Raw Normal View History

2018-12-09 15:18:16 +00:00
// run-rustfix
2018-05-28 07:29:02 +00:00
#![feature(stmt_expr_attributes)]
#![allow(unused_variables)]
2018-05-28 07:29:02 +00:00
struct Outer {
inner: u32,
}
2018-07-28 15:34:52 +00:00
#[deny(clippy::ref_in_deref)]
2018-05-28 07:29:02 +00:00
fn main() {
let outer = Outer { inner: 0 };
let inner = (&outer).inner;
}