]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-33525.stderr
New upstream version 1.49.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-33525.stderr
1 error[E0425]: cannot find value `a` in this scope
2 --> $DIR/issue-33525.rs:2:5
3 |
4 LL | a;
5 | ^ not found in this scope
6
7 error[E0609]: no field `lorem` on type `&'static str`
8 --> $DIR/issue-33525.rs:3:8
9 |
10 LL | "".lorem;
11 | ^^^^^
12
13 error[E0609]: no field `ipsum` on type `&'static str`
14 --> $DIR/issue-33525.rs:4:8
15 |
16 LL | "".ipsum;
17 | ^^^^^
18
19 error: aborting due to 3 previous errors
20
21 Some errors have detailed explanations: E0425, E0609.
22 For more information about an error, try `rustc --explain E0425`.