blob: 99b512503346598df58a334ccf7128a3926460bc [file] [log] [blame]
// Check that associated type defaults are wf checked.
#![feature(associated_type_defaults)]
// Default types must always be wf
trait Tr3 {
type Ty = Vec<[u8]>;
//~^ ERROR the size for values of type `[u8]` cannot be known at compilation time
}
fn main() {}