2024-02-16 20:02:50 +00:00
|
|
|
//@ run-rustfix
|
2022-03-25 13:53:03 -07:00
|
|
|
|
|
|
|
#[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() {}
|