]> git.proxmox.com Git - rustc.git/blob - tests/ui/closures/issue-99565.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / closures / issue-99565.rs
1 #![crate_type = "lib"]
2
3 fn foo<T, U>(_: U) {}
4
5 fn bar() {
6 foo(|| {}); //~ ERROR type annotations needed
7 }