summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeck/issue-79040.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/typeck/issue-79040.stderr')
-rw-r--r--src/test/ui/typeck/issue-79040.stderr17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/test/ui/typeck/issue-79040.stderr b/src/test/ui/typeck/issue-79040.stderr
new file mode 100644
index 000000000..aec2e1ec9
--- /dev/null
+++ b/src/test/ui/typeck/issue-79040.stderr
@@ -0,0 +1,17 @@
+error[E0369]: cannot add `{integer}` to `&str`
+ --> $DIR/issue-79040.rs:2:25
+ |
+LL | const FOO = "hello" + 1;
+ | ------- ^ - {integer}
+ | |
+ | &str
+
+error: missing type for `const` item
+ --> $DIR/issue-79040.rs:2:11
+ |
+LL | const FOO = "hello" + 1;
+ | ^^^ help: provide a type for the item: `FOO: <type>`
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0369`.