blob: 9dd12e3a0cae7100616bd482fa47d61aa55d0d0a [file] [log] [blame] [edit]
//@ run-rustfix
#[allow(unused)]
struct Struct<T>(T);
impl<T> Struct<T> where T:: std::fmt::Display {
//~^ ERROR expected `:` followed by trait or lifetime
//~| HELP use single colon
}
fn main() {}