mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 06:34:22 +00:00
11 lines
171 B
Rust
11 lines
171 B
Rust
//@ check-pass
|
|
// Regression test for #15477. This test just needs to compile.
|
|
|
|
|
|
trait Chromosome<X: Chromosome<i32>> {
|
|
}
|
|
|
|
impl Chromosome<i32> for i32 { }
|
|
|
|
fn main() { }
|