Sign in
android
/
toolchain
/
rustc
/
d2dbbcd40813d506244f1255bc2c84088a0197e1
/
.
/
src
/
test
/
ui
/
generics
/
issue-95208.fixed
blob: a0b1e886ca26887935098d9ae3cedfb72f0e5362 [
file
] [
log
] [
blame
]
// 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
()
{}