2015-01-20 12:57:10 -06:00
|
|
|
//@ compile-flags:-C debuginfo=1
|
2014-10-29 01:13:29 -05:00
|
|
|
//@ min-lldb-version: 310
|
2013-07-11 11:00:21 -05:00
|
|
|
|
2014-12-19 05:54:09 -06:00
|
|
|
pub trait TraitWithDefaultMethod : Sized {
|
2013-08-09 03:25:24 -05:00
|
|
|
fn method(self) {
|
2013-07-11 11:00:21 -05:00
|
|
|
()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct MyStruct;
|
|
|
|
|
|
|
|
impl TraitWithDefaultMethod for MyStruct { }
|
|
|
|
|
2013-09-25 02:43:37 -05:00
|
|
|
pub fn main() {
|
2013-07-11 11:00:21 -05:00
|
|
|
MyStruct.method();
|
2013-07-23 19:16:26 -05:00
|
|
|
}
|