Sign in
fuchsia
/
third_party
/
rust
/
8429c9911b68afe9c0cc5804cb15fc22f03d913c
/
.
/
tests
/
ui
/
cycle-trait
/
cycle-trait-supertrait-direct.rs
blob: e6ab2c790d65666606df43bd1401db3276399622 [
file
] [
log
] [
blame
]
// Test a supertrait cycle where a trait extends itself.
trait
Chromosome
:
Chromosome
{
//~^ ERROR cycle detected
}
fn
main
()
{
}