about summary refs log tree commit diff
path: root/src/test/ui/tuple/tuple-index-not-tuple.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/tuple/tuple-index-not-tuple.stderr')
-rw-r--r--src/test/ui/tuple/tuple-index-not-tuple.stderr15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/ui/tuple/tuple-index-not-tuple.stderr b/src/test/ui/tuple/tuple-index-not-tuple.stderr
deleted file mode 100644
index a1bcdfaedbc..00000000000
--- a/src/test/ui/tuple/tuple-index-not-tuple.stderr
+++ /dev/null
@@ -1,15 +0,0 @@
-error[E0609]: no field `0` on type `Point`
-  --> $DIR/tuple-index-not-tuple.rs:6:12
-   |
-LL |     origin.0;
-   |            ^ help: a field with a similar name exists: `x`
-
-error[E0609]: no field `0` on type `Empty`
-  --> $DIR/tuple-index-not-tuple.rs:8:11
-   |
-LL |     Empty.0;
-   |           ^ unknown field
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0609`.