blob: bfe4b82b2b0ff2e9b26016cbf1a2c6563f8863ee [file] [edit]
//@ check-pass
#![allow(incomplete_features)]
#![feature(move_expr)]
fn main() {
let x: bool = true;
let y: bool = true;
let _ = || move(x) || y;
let x: bool = true;
let y: bool = true;
let _ = move || move(x) || y;
}