summaryrefslogtreecommitdiffstats
path: root/src/test/ui/enum/enum-in-scope.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/enum/enum-in-scope.stderr')
-rw-r--r--src/test/ui/enum/enum-in-scope.stderr12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/test/ui/enum/enum-in-scope.stderr b/src/test/ui/enum/enum-in-scope.stderr
deleted file mode 100644
index 49a01abcb..000000000
--- a/src/test/ui/enum/enum-in-scope.stderr
+++ /dev/null
@@ -1,12 +0,0 @@
-error[E0530]: let bindings cannot shadow tuple structs
- --> $DIR/enum-in-scope.rs:6:9
- |
-LL | struct hello(isize);
- | -------------------- the tuple struct `hello` is defined here
-...
-LL | let hello = 0;
- | ^^^^^ cannot be named the same as a tuple struct
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0530`.