summaryrefslogtreecommitdiffstats
path: root/src/test/ui/macros/assert-trailing-junk.with-generic-asset.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /src/test/ui/macros/assert-trailing-junk.with-generic-asset.stderr
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/macros/assert-trailing-junk.with-generic-asset.stderr')
-rw-r--r--src/test/ui/macros/assert-trailing-junk.with-generic-asset.stderr58
1 files changed, 0 insertions, 58 deletions
diff --git a/src/test/ui/macros/assert-trailing-junk.with-generic-asset.stderr b/src/test/ui/macros/assert-trailing-junk.with-generic-asset.stderr
deleted file mode 100644
index 1e73320e4..000000000
--- a/src/test/ui/macros/assert-trailing-junk.with-generic-asset.stderr
+++ /dev/null
@@ -1,58 +0,0 @@
-error: expected one of `,`, `.`, `?`, or an operator, found `some`
- --> $DIR/assert-trailing-junk.rs:9:18
- |
-LL | assert!(true some extra junk, "whatever");
- | ^^^^ expected one of `,`, `.`, `?`, or an operator
-
-error: expected one of `,`, `.`, `?`, or an operator, found `some`
- --> $DIR/assert-trailing-junk.rs:12:18
- |
-LL | assert!(true some extra junk);
- | ^^^^ expected one of `,`, `.`, `?`, or an operator
-
-error: no rules expected the token `blah`
- --> $DIR/assert-trailing-junk.rs:15:30
- |
-LL | assert!(true, "whatever" blah);
- | -^^^^ no rules expected this token in macro call
- | |
- | help: missing comma here
- |
- = note: while trying to match sequence start
-
-error: unexpected string literal
- --> $DIR/assert-trailing-junk.rs:18:18
- |
-LL | assert!(true "whatever" blah);
- | -^^^^^^^^^^
- | |
- | help: try adding a comma
-
-error: no rules expected the token `blah`
- --> $DIR/assert-trailing-junk.rs:18:29
- |
-LL | assert!(true "whatever" blah);
- | -^^^^ no rules expected this token in macro call
- | |
- | help: missing comma here
- |
- = note: while trying to match sequence start
-
-error: macro requires an expression as an argument
- --> $DIR/assert-trailing-junk.rs:22:5
- |
-LL | assert!(true;);
- | ^^^^^^^^^^^^-^
- | |
- | help: try removing semicolon
-
-error: unexpected string literal
- --> $DIR/assert-trailing-junk.rs:25:27
- |
-LL | assert!(false || true "error message");
- | -^^^^^^^^^^^^^^^
- | |
- | help: try adding a comma
-
-error: aborting due to 7 previous errors
-