1 2 3 4 5 6 7 8 9
#![crate_type = "lib"] pub trait X { fn x() { fn f() { } f(); } fn dummy(&self) { } }