rust/tests/ui/closures/print/closure-print-verbose.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
312 B
Rust
Raw Normal View History

2023-12-19 11:39:58 -06:00
// compile-flags: -Zverbose-internals
// 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
}