summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/assoc-const-underscore-semantic-fail.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/assoc-const-underscore-semantic-fail.stderr')
-rw-r--r--src/test/ui/parser/assoc-const-underscore-semantic-fail.stderr27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/test/ui/parser/assoc-const-underscore-semantic-fail.stderr b/src/test/ui/parser/assoc-const-underscore-semantic-fail.stderr
deleted file mode 100644
index 538bf0ec1..000000000
--- a/src/test/ui/parser/assoc-const-underscore-semantic-fail.stderr
+++ /dev/null
@@ -1,27 +0,0 @@
-error: `const` items in this context need a name
- --> $DIR/assoc-const-underscore-semantic-fail.rs:7:15
- |
-LL | const _: () = ();
- | ^ `_` is not a valid name for this `const` item
-
-error: `const` items in this context need a name
- --> $DIR/assoc-const-underscore-semantic-fail.rs:10:15
- |
-LL | const _: () = ();
- | ^ `_` is not a valid name for this `const` item
-
-error: `const` items in this context need a name
- --> $DIR/assoc-const-underscore-semantic-fail.rs:15:15
- |
-LL | const _: () = ();
- | ^ `_` is not a valid name for this `const` item
-
-error[E0438]: const `_` is not a member of trait `A`
- --> $DIR/assoc-const-underscore-semantic-fail.rs:10:9
- |
-LL | const _: () = ();
- | ^^^^^^^^^^^^^^^^^ not a member of trait `A`
-
-error: aborting due to 4 previous errors
-
-For more information about this error, try `rustc --explain E0438`.