Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
generics
/
issue-95208-ignore-qself.fixed
blob: 0c5bffd9746369aecccef48f456c54ea6bdd6479 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
()
{}