blob: 60af53359e8adb8bb982b95bc9d26c1345554565 [file] [log] [blame]
#![crate_type = "lib"]
pub trait X {
fn x() {
fn f() { }
f();
}
fn dummy(&self) { }
}