2017-02-23 15:31:21 -06:00
|
|
|
// Ensure that capturing closures are never coerced to fns
|
|
|
|
// Especially interesting as non-capturing closures can be.
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut a = 0u8;
|
2017-02-23 17:32:21 -06:00
|
|
|
let foo: fn(u8) -> u8 = |v: u8| { a += v; a };
|
2017-02-23 15:31:21 -06:00
|
|
|
//~^ ERROR mismatched types
|
|
|
|
}
|