mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
241 B
Rust
12 lines
241 B
Rust
// run-rustfix
|
|
|
|
#[allow(unused)]
|
|
struct Struct<T>(T);
|
|
|
|
impl<T: Iterator> Struct<T> where <T as std:: iter::Iterator>::Item: std::fmt::Display {
|
|
//~^ ERROR expected `:` followed by trait or lifetime
|
|
//~| HELP use single colon
|
|
}
|
|
|
|
fn main() {}
|