summaryrefslogtreecommitdiffstats
path: root/tests/ui/closures/print/closure-print-verbose.rs
blob: 4b0438a91ed2e98f90ea784ad56c51bcef7b9e18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// compile-flags: -Zverbose

// Same as closure-coerce-fn-1.rs

// Ensure that capturing closures are never coerced to fns
// Especially interesting as non-capturing closures can be.

fn main() {
    let mut a = 0u8;
    let foo: fn(u8) -> u8 = |v: u8| { a += v; a };
    //~^ ERROR mismatched types
}