Sign in
rust
/
rust
/
dc9879cb3d3446c41b6d7d6813b7bfd17da1134f
/
.
/
tests
/
ui
/
typeck
/
bad-recursive-type-sig-infer.rs
blob: 9812d8c381117d96620eb2ed17eb9a5f3da3b382 [
file
] [
log
] [
blame
]
fn
a
()
->
_
{
//~^ ERROR the placeholder `_` is not allowed within types on item signatures for return types
&
a
}
fn
b
()
->
_
{
//~^ ERROR the placeholder `_` is not allowed within types on item signatures for return types
&
a
}
fn
main
()
{}