blob: 26f7673e6165085506cd1490efa5ab6ce2922626 [file] [log] [blame]
//@ check-pass
//@ pretty-expanded FIXME #23616
trait Foo {
fn foo(&self);
}
trait Bar : Foo {
fn bar(&self);
}
pub fn main() {}