fn main() { trait Seq { } impl Seq for Vec { //~ ERROR wrong number of type arguments /* ... */ } impl Seq for u32 { //~ ERROR wrong number of type arguments /* Treat the integer as a sequence of bits */ } }