mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
8 lines
194 B
Rust
8 lines
194 B
Rust
//@ known-bug: rust-lang/rust#124436
|
|
//@ compile-flags: -Zdump-mir=all -Zpolymorphize=on
|
|
|
|
pub trait TraitCat {}
|
|
pub trait TraitDog {}
|
|
|
|
pub fn gamma<T: TraitCat + TraitDog>(t: [TraitDog; 32]) {}
|