rust/tests/ui/typeck/issue-74086.rs

6 lines
254 B
Rust

fn main() {
static BUG: fn(_) -> u8 = |_| 8;
//~^ ERROR the placeholder `_` is not allowed within types on item signatures for functions [E0121]
//~| ERROR the placeholder `_` is not allowed within types on item signatures for static items
}