clippy 0.0.208

A bunch of helpful lints to avoid common pitfalls in 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;
}