blob: 645cbad7f0bdc87bd0b8769a760357ada647ad87 [file] [log] [blame]
extern mod std;
fn main() {
trait seq { }
impl<T> ~[T]: seq<T> { //~ ERROR wrong number of type arguments
/* ... */
}
impl u32: seq<bool> {
/* Treat the integer as a sequence of bits */
}
}