blob: 58cada5d31ea026a9080016bcc2e87792e1c12c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#![feature(rustc_attrs)]
// This test checks that a failure occurs with NLL but does not fail with the
// legacy AST output. Check issue-49824.nll.stderr for expected compilation error
// output under NLL and #49824 for more information.
#[rustc_error]
fn main() {
//~^ compilation successful
let mut x = 0;
|| {
|| {
let _y = &mut x;
}
};
}
|