rust/tests/ui/traits/trait-upcasting/cyclic-trait-resolution.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
224 B
Rust
Raw Normal View History

2019-11-05 02:18:39 +00:00
trait A: B + A {}
//~^ ERROR cycle detected when computing the super predicates of `A` [E0391]
2019-11-05 02:18:39 +00:00
trait B {}
impl A for () {}
impl B for () {}
fn main() {
let a: Box<dyn A> = Box::new(());
let _b: Box<dyn B> = a;
}