about summary refs log tree commit diff
path: root/tests/ui/unboxed-closures/non-tupled-arg-mismatch.rs
blob: 2278285bf8f156189ee2c3b0b14ad6404b604535 (plain)
1
2
3
4
5
6
7
8
#![feature(unboxed_closures)]

fn a<F: Fn<usize>>(f: F) {}
//~^ ERROR type parameter to bare `Fn` trait must be a tuple

fn main() {
    a(|_: usize| {}); //~ ERROR: mismatched types
}