blob: 9bb9f12f64c0a87691d1d0c3e77e4c594f3822c7 [file] [log] [blame]
fn main() {
trait Seq { }
impl<T> Seq<T> for Vec<T> { //~ ERROR wrong number of type arguments
/* ... */
}
impl Seq<bool> for u32 { //~ ERROR wrong number of type arguments
/* Treat the integer as a sequence of bits */
}
}