From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- tests/ui/typeck/issue-79040.stderr | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tests/ui/typeck/issue-79040.stderr (limited to 'tests/ui/typeck/issue-79040.stderr') diff --git a/tests/ui/typeck/issue-79040.stderr b/tests/ui/typeck/issue-79040.stderr new file mode 100644 index 000000000..c820d1e08 --- /dev/null +++ b/tests/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:14 + | +LL | const FOO = "hello" + 1; + | ^ help: provide a type for the item: `: ` + +error: aborting due to 2 previous errors + +For more information about this error, try `rustc --explain E0369`. -- cgit v1.2.3