blob: 38707887f0eed714a5d153c31b9bd650424fcc70 [file] [log] [blame]
//@ run-rustfix
#![allow(unused)]
struct Wrapper<T>(T);
fn bar() -> _ { Wrapper(foo) }
//~^ ERROR the placeholder `_` is not allowed within types on item signatures for return types
fn foo() {}
fn main() {}