Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
generics
/
issue-95208.fixed
blob: cd9286011e5e46ea474a6dd3814f85a21229ab64 [
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
()
{}