rust-clippy/tests/ui/unnecessary_ref.fixed

24 lines
398 B
Rust
Raw Normal View History

2018-12-09 15:18:16 +00:00
// run-rustfix
#![feature(stmt_expr_attributes)]
#![allow(unused_variables, dead_code)]
2018-12-09 15:18:16 +00:00
struct Outer {
inner: u32,
}
#[deny(clippy::ref_in_deref)]
fn main() {
let outer = Outer { inner: 0 };
let inner = outer.inner;
2018-12-09 15:18:16 +00:00
}
struct Apple;
impl Apple {
fn hello(&self) {}
}
struct Package(pub *const Apple);
fn foobar(package: *const Package) {
unsafe { &*(*package).0 }.hello();
}