1 2 3 4 5 6 7 8 9 10 11
//@ check-pass trait Foo { fn foo(&self); } trait Bar : Foo { fn bar(&self); } pub fn main() {}