rust/tests/ui/closures/issue-99565.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
110 B
Rust
Raw Normal View History

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