summaryrefslogtreecommitdiffstats
path: root/src/test/ui/closures/closure-no-fn-2.rs
blob: f3066f7a33018ef92880254b73569486309774e6 (plain)
1
2
3
4
5
6
7
8
// Ensure that capturing closures are never coerced to fns
// Especially interesting as non-capturing closures can be.

fn main() {
    let b = 0u8;
    let bar: fn() -> u8 = || { b };
    //~^ ERROR mismatched types
}