about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorEh2406 <YeomanYaacov@gmail.com>2017-09-03 13:07:47 -0400
committerEh2406 <YeomanYaacov@gmail.com>2017-09-03 13:07:47 -0400
commit9a547fc7c49f484b0be223d53cd0c6a08bbadef5 (patch)
tree1f38f2f95df4126619770ae4ecf08ef6208f336f /src
parentf65bb2a051a6362b3e2dcdf3e081b8c76f5ef1a7 (diff)
downloadrust-9a547fc7c49f484b0be223d53cd0c6a08bbadef5.tar.gz
rust-9a547fc7c49f484b0be223d53cd0c6a08bbadef5.zip
get ci green
Diffstat (limited to 'src')
-rw-r--r--src/test/run-pass/for-loop-unconstrained-element-type-i32-fallback.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/run-pass/for-loop-unconstrained-element-type-i32-fallback.rs b/src/test/run-pass/for-loop-unconstrained-element-type-i32-fallback.rs
index b36afcf87b3..264efa9f402 100644
--- a/src/test/run-pass/for-loop-unconstrained-element-type-i32-fallback.rs
+++ b/src/test/run-pass/for-loop-unconstrained-element-type-i32-fallback.rs
@@ -9,9 +9,11 @@
 // except according to those terms.
 
 // Test that the type of `sum` falls back to `i32` here,
-// and that the for loop desugaring doesn't inferfere with
+// and that the for loop desugaring doesn't interfere with
 // that.
 
+// ignore-test
+
 fn main() {
     let mut sum = 0;
     for i in Vec::new() {