6d86969260
conflict with the new single-line-sugared-inner-doc-comment (`//! ...`).
8 lines
184 B
Rust
8 lines
184 B
Rust
fn main() {
|
|
let x = 5;
|
|
let _y = fn~(move x) -> int {
|
|
let _z = fn~(move x) -> int { x }; //~ ERROR moving out of variable declared in an outer block
|
|
22
|
|
};
|
|
}
|