rust/src/test/run-pass/trait-composition-trivial.rs

13 lines
99 B
Rust
Raw Normal View History

// xfail-fast - ICE
trait Foo {
fn foo();
}
trait Bar : Foo {
fn bar();
}
fn main() {}