summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-33525.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/issues/issue-33525.stderr')
-rw-r--r--tests/ui/issues/issue-33525.stderr22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/ui/issues/issue-33525.stderr b/tests/ui/issues/issue-33525.stderr
new file mode 100644
index 000000000..f8d703dc3
--- /dev/null
+++ b/tests/ui/issues/issue-33525.stderr
@@ -0,0 +1,22 @@
+error[E0425]: cannot find value `a` in this scope
+ --> $DIR/issue-33525.rs:2:5
+ |
+LL | a;
+ | ^ not found in this scope
+
+error[E0609]: no field `lorem` on type `&'static str`
+ --> $DIR/issue-33525.rs:3:8
+ |
+LL | "".lorem;
+ | ^^^^^
+
+error[E0609]: no field `ipsum` on type `&'static str`
+ --> $DIR/issue-33525.rs:4:8
+ |
+LL | "".ipsum;
+ | ^^^^^
+
+error: aborting due to 3 previous errors
+
+Some errors have detailed explanations: E0425, E0609.
+For more information about an error, try `rustc --explain E0425`.