blob: 7c0886183eb36c30cf83e6d67c798e7ad07039e9 [file] [edit]
//@ check-pass
//@ ignore-test (#155050): currently ICEs instead of reporting a name-resolution error
// FIXME(TaKO8Ki): Remove this ignore once closure-local names in `move(expr)` produce a real
// diagnostic instead of hitting the current `Res::Err` ICE path.
#![allow(incomplete_features)]
#![feature(move_expr)]
fn main() {
let _c = || {
let x = 3;
move(x);
};
}