Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
suggestions
/
suggest-fn-ptr-for-fn-item-in-fn-ret.fixed
blob: 0b0eaa1959b10e1c6f81153c26bf36fbfdf80413 [
file
] [
log
] [
blame
] [
edit
]
//@ run-rustfix
#![allow(unused)]
struct
Wrapper
<
T
>(
T
);
fn bar
()
->
Wrapper
<
fn
()>
{
Wrapper
(
foo
)
}
//~^ ERROR the placeholder `_` is not allowed within types on item signatures for return types
fn foo
()
{}
fn main
()
{}