Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
parser
/
suggest_misplaced_generics
/
struct.fixed
blob: 65d26601e101db8832851a1439c3302f51ba854d [
file
] [
log
] [
blame
]
// 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
()
{}