1 2 3 4 5 6 7
// run-pass trait Tc {} impl Tc for bool {} fn main() { let _: &[&dyn Tc] = &[&true]; }