summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/default-unmatched-assoc.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 /tests/ui/parser/default-unmatched-assoc.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 'tests/ui/parser/default-unmatched-assoc.stderr')
-rw-r--r--tests/ui/parser/default-unmatched-assoc.stderr54
1 files changed, 54 insertions, 0 deletions
diff --git a/tests/ui/parser/default-unmatched-assoc.stderr b/tests/ui/parser/default-unmatched-assoc.stderr
new file mode 100644
index 000000000..ee35fded9
--- /dev/null
+++ b/tests/ui/parser/default-unmatched-assoc.stderr
@@ -0,0 +1,54 @@
+error: `default` is not followed by an item
+ --> $DIR/default-unmatched-assoc.rs:5:5
+ |
+LL | default do
+ | ^^^^^^^ the `default` qualifier
+ |
+ = note: only `fn`, `const`, `type`, or `impl` items may be prefixed by `default`
+
+error: non-item in item list
+ --> $DIR/default-unmatched-assoc.rs:5:13
+ |
+LL | trait Foo {
+ | - item list starts here
+LL | default!();
+LL | default do
+ | ^^ non-item starts here
+...
+LL | }
+ | - item list ends here
+
+error: `default` is not followed by an item
+ --> $DIR/default-unmatched-assoc.rs:13:5
+ |
+LL | default do
+ | ^^^^^^^ the `default` qualifier
+ |
+ = note: only `fn`, `const`, `type`, or `impl` items may be prefixed by `default`
+
+error: non-item in item list
+ --> $DIR/default-unmatched-assoc.rs:13:13
+ |
+LL | impl S {
+ | - item list starts here
+LL | default!();
+LL | default do
+ | ^^ non-item starts here
+...
+LL | }
+ | - item list ends here
+
+error: cannot find macro `default` in this scope
+ --> $DIR/default-unmatched-assoc.rs:4:5
+ |
+LL | default!();
+ | ^^^^^^^
+
+error: cannot find macro `default` in this scope
+ --> $DIR/default-unmatched-assoc.rs:12:5
+ |
+LL | default!();
+ | ^^^^^^^
+
+error: aborting due to 6 previous errors
+