13 lines
140 B
Rust
13 lines
140 B
Rust
//@ check-pass
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
trait Foo {
|
|
fn foo(&self);
|
|
}
|
|
|
|
trait Bar : Foo {
|
|
fn bar(&self);
|
|
}
|
|
|
|
pub fn main() {}
|