]> git.lizzy.rs Git - rust.git/blob - src/test/ui/async-await/drop-order/drop-order-locals-are-hidden.stderr
Auto merge of #103217 - mejrs:track, r=eholk
[rust.git] / src / test / ui / async-await / drop-order / drop-order-locals-are-hidden.stderr
1 error[E0425]: cannot find value `__arg1` in this scope
2   --> $DIR/drop-order-locals-are-hidden.rs:4:16
3    |
4 LL |     assert_eq!(__arg1, (1, 2, 3));
5    |                ^^^^^^ not found in this scope
6
7 error[E0425]: cannot find value `__arg2` in this scope
8   --> $DIR/drop-order-locals-are-hidden.rs:5:16
9    |
10 LL |     assert_eq!(__arg2, 4);
11    |                ^^^^^^ not found in this scope
12
13 error[E0425]: cannot find value `__arg0` in this scope
14   --> $DIR/drop-order-locals-are-hidden.rs:9:16
15    |
16 LL |     assert_eq!(__arg0, 1);
17    |                ^^^^^^ not found in this scope
18
19 error[E0425]: cannot find value `__arg1` in this scope
20   --> $DIR/drop-order-locals-are-hidden.rs:10:16
21    |
22 LL |     assert_eq!(__arg1, 2);
23    |                ^^^^^^ not found in this scope
24
25 error: aborting due to 4 previous errors
26
27 For more information about this error, try `rustc --explain E0425`.