rust/tests/ui/self/auxiliary/explicit_self_xcrate.rs

16 lines
198 B
Rust

pub trait Foo {
#[inline(always)]
fn f(&self);
}
pub struct Bar {
pub x: String
}
impl Foo for Bar {
#[inline(always)]
fn f(&self) {
println!("{}", (*self).x);
}
}