about summary refs log tree commit diff
path: root/src/test/compile-fail/tuple-index-out-of-bounds.rs
diff options
context:
space:
mode:
authorJonathan Turner <jturner@mozilla.com>2016-07-28 09:49:31 -0700
committerJonathan Turner <jturner@mozilla.com>2016-07-28 09:49:31 -0700
commitea77049cfa72358d6a2d6370a3f7a6a70d93b8e8 (patch)
tree0c9d5e13db06f1613f88a5447d42b1de96ac0469 /src/test/compile-fail/tuple-index-out-of-bounds.rs
parentcfdaca049a2451b62d3d403ef13b78d7a2f60816 (diff)
downloadrust-ea77049cfa72358d6a2d6370a3f7a6a70d93b8e8.tar.gz
rust-ea77049cfa72358d6a2d6370a3f7a6a70d93b8e8.zip
Move to {integer} and {float}
Diffstat (limited to 'src/test/compile-fail/tuple-index-out-of-bounds.rs')
-rw-r--r--src/test/compile-fail/tuple-index-out-of-bounds.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/tuple-index-out-of-bounds.rs b/src/test/compile-fail/tuple-index-out-of-bounds.rs
index 4a9d59ea0ed..4597cf3d350 100644
--- a/src/test/compile-fail/tuple-index-out-of-bounds.rs
+++ b/src/test/compile-fail/tuple-index-out-of-bounds.rs
@@ -20,5 +20,5 @@ fn main() {
     tuple.0;
     tuple.1;
     tuple.2;
-    //~^ ERROR attempted out-of-bounds tuple index `2` on type `({numeric}, {numeric})`
+    //~^ ERROR attempted out-of-bounds tuple index `2` on type `({integer}, {integer})`
 }