rust/tests/ui/generics/issue-95208-ignore-qself.rs
2023-01-11 09:32:08 +00:00

12 lines
242 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() {}