extern mod std; fn main() { trait seq { } impl ~[T]: seq { //~ ERROR wrong number of type arguments /* ... */ } impl u32: seq { /* Treat the integer as a sequence of bits */ } }