]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-33525.stderr
Rollup merge of #53239 - cuviper:llvm5-closure-alloca, r=eddyb
[rust.git] / src / test / ui / issues / issue-33525.stderr
1 error[E0425]: cannot find value `a` in this scope
2   --> $DIR/issue-33525.rs:12:5
3    |
4 LL |     a; //~ ERROR cannot find value `a`
5    |     ^ not found in this scope
6
7 error[E0609]: no field `lorem` on type `&'static str`
8   --> $DIR/issue-33525.rs:13:8
9    |
10 LL |     "".lorem; //~ ERROR no field
11    |        ^^^^^
12
13 error[E0609]: no field `ipsum` on type `&'static str`
14   --> $DIR/issue-33525.rs:14:8
15    |
16 LL |     "".ipsum; //~ ERROR no field
17    |        ^^^^^
18
19 error: aborting due to 3 previous errors
20
21 Some errors occurred: E0425, E0609.
22 For more information about an error, try `rustc --explain E0425`.