summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/concat.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/macros/concat.stderr')
-rw-r--r--tests/ui/macros/concat.stderr4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/macros/concat.stderr b/tests/ui/macros/concat.stderr
index 61fb9de1e..d65d93544 100644
--- a/tests/ui/macros/concat.stderr
+++ b/tests/ui/macros/concat.stderr
@@ -16,7 +16,7 @@ error: expected a literal
LL | concat!(foo);
| ^^^
|
- = note: only literals (like `"foo"`, `42` and `3.14`) can be passed to `concat!()`
+ = note: only literals (like `"foo"`, `-42` and `3.14`) can be passed to `concat!()`
error: expected a literal
--> $DIR/concat.rs:5:13
@@ -24,7 +24,7 @@ error: expected a literal
LL | concat!(foo());
| ^^^^^
|
- = note: only literals (like `"foo"`, `42` and `3.14`) can be passed to `concat!()`
+ = note: only literals (like `"foo"`, `-42` and `3.14`) can be passed to `concat!()`
error: aborting due to 4 previous errors