Sign in
fuchsia
/
third_party
/
rust
/
HEAD
/
.
/
tests
/
ui
/
cycle-trait
/
issue-12511.rs
blob: 1d33b03c57a2c09243ee59f66b4370e808b1eaa8 [
file
]
trait
T1
:
T2
{
//~^ ERROR cycle detected
}
//@ ignore-parallel-frontend query cycle
trait
T2
:
T1
{
}
fn
main
()
{
}