mirror of
https://github.com/openharmony/third_party_rust_rust.git
synced 2026-08-26 17:26:46 -04:00
17 lines
248 B
Rust
17 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();
|
|
}
|