rust/src/test/debuginfo/issue-7712.rs
2018-12-25 21:08:33 -07:00

16 lines
248 B
Rust

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