summaryrefslogtreecommitdiffstats
path: root/src/test/ui/tuple/tuple-index-out-of-bounds.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/tuple/tuple-index-out-of-bounds.stderr')
-rw-r--r--src/test/ui/tuple/tuple-index-out-of-bounds.stderr15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/ui/tuple/tuple-index-out-of-bounds.stderr b/src/test/ui/tuple/tuple-index-out-of-bounds.stderr
deleted file mode 100644
index 7d7c5cd78..000000000
--- a/src/test/ui/tuple/tuple-index-out-of-bounds.stderr
+++ /dev/null
@@ -1,15 +0,0 @@
-error[E0609]: no field `2` on type `Point`
- --> $DIR/tuple-index-out-of-bounds.rs:7:12
- |
-LL | origin.2;
- | ^ help: a field with a similar name exists: `0`
-
-error[E0609]: no field `2` on type `({integer}, {integer})`
- --> $DIR/tuple-index-out-of-bounds.rs:12:11
- |
-LL | tuple.2;
- | ^
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0609`.