Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
traits
/
cycle-generic-bound.rs
blob: dec51ef35bc044936d4eaadc82c873e89685c183 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
// Regression test for #15477. This test just needs to compile.
//@ pretty-expanded FIXME #23616
trait
Chromosome
<
X
:
Chromosome
<
i32
>>
{
}
impl
Chromosome
<
i32
>
for
i32
{
}
fn
main
()
{
}