summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/issue-91434.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/issue-91434.stderr')
-rw-r--r--src/test/ui/consts/issue-91434.stderr15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/ui/consts/issue-91434.stderr b/src/test/ui/consts/issue-91434.stderr
new file mode 100644
index 000000000..08d3ad770
--- /dev/null
+++ b/src/test/ui/consts/issue-91434.stderr
@@ -0,0 +1,15 @@
+error: expected at least one digit in exponent
+ --> $DIR/issue-91434.rs:2:11
+ |
+LL | [9; [[9E; h]]];
+ | ^^
+
+error[E0425]: cannot find value `h` in this scope
+ --> $DIR/issue-91434.rs:2:15
+ |
+LL | [9; [[9E; h]]];
+ | ^ not found in this scope
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0425`.