summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/if-in-in.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/parser/if-in-in.rs')
-rw-r--r--tests/ui/parser/if-in-in.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/ui/parser/if-in-in.rs b/tests/ui/parser/if-in-in.rs
new file mode 100644
index 000000000..6c0986fe1
--- /dev/null
+++ b/tests/ui/parser/if-in-in.rs
@@ -0,0 +1,7 @@
+// run-rustfix
+
+fn main() {
+ for i in in 1..2 { //~ ERROR expected iterable, found keyword `in`
+ println!("{}", i);
+ }
+}