rustc/tests/ui/closures/issue-99565.rs
2023-08-02 10:33:26 +02:00

8 lines
110 B
Rust

#![crate_type = "lib"]
fn foo<T, U>(_: U) {}
fn bar() {
foo(|| {}); //~ ERROR type annotations needed
}