Sign in
rust
/
rust
/
c1d608bb7e862c8d8b74ce7cfc042fa98e9d4792
/
.
/
tests
/
ui
/
parser
/
suggest_misplaced_generics
/
struct.fixed
blob: 65d26601e101db8832851a1439c3302f51ba854d [
file
]
// Issue: 103366 , Suggest fix for misplaced generic params
//@ run-rustfix
#[allow(unused)]
struct
Foo
<
T
>
{
x
:
T
}
//~^ ERROR expected identifier, found `<`
//~| HELP place the generic parameter name after the struct name
fn main
()
{}