rustc/tests/debuginfo/issue-7712.rs
2024-10-21 11:08:01 +02:00

16 lines
224 B
Rust

//@ compile-flags:-C debuginfo=1
pub trait TraitWithDefaultMethod : Sized {
fn method(self) {
()
}
}
struct MyStruct;
impl TraitWithDefaultMethod for MyStruct { }
pub fn main() {
MyStruct.method();
}