blob: 11143f79161a83a7dd805af574343bdd397c53a6 [file] [log] [blame] [edit]
//@ compile-flags:-C debuginfo=1
pub trait TraitWithDefaultMethod : Sized {
fn method(self) {
()
}
}
struct MyStruct;
impl TraitWithDefaultMethod for MyStruct { }
pub fn main() {
MyStruct.method();
}