blob: 0d151520fe07908c7db0706e2c8411e65be8fceb [file] [log] [blame]
pub struct S(pub ());
impl S {
pub fn foo(&self) { }
}
pub trait T {
fn bar(&self);
}
impl T for S {
fn bar(&self) { }
}