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