mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
14 lines
337 B
Rust
14 lines
337 B
Rust
fn main() {
|
|
trait Seq { }
|
|
|
|
impl<T> Seq<T> for Vec<T> {
|
|
//~^ ERROR this trait takes 0 generic arguments but 1 generic argument
|
|
/* ... */
|
|
}
|
|
|
|
impl Seq<bool> for u32 {
|
|
//~^ ERROR this trait takes 0 generic arguments but 1 generic argument
|
|
/* Treat the integer as a sequence of bits */
|
|
}
|
|
}
|