fn main() { trait Seq { } impl Seq for Vec { //~^ ERROR this trait takes 0 type arguments but 1 type argument was supplied /* ... */ } impl Seq for u32 { //~^ ERROR this trait takes 0 type arguments but 1 type argument was supplied /* Treat the integer as a sequence of bits */ } }