mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
9 lines
238 B
Rust
9 lines
238 B
Rust
// 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
|
|
}
|