Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
infinite
/
infinite-trait-alias-recursion.rs
blob: ec86744e68c53b2411033598431b6977b8e7790f [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
trait_alias
)]
trait
T1
=
T2
;
//~^ ERROR cycle detected when computing the super predicates of `T1`
trait
T2
=
T3
;
trait
T3
=
T1
+
T3
;
fn
main
()
{}