diff options
Diffstat (limited to 'tests/ui/suggestions/for-loop-missing-in.fixed')
| -rw-r--r-- | tests/ui/suggestions/for-loop-missing-in.fixed | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/ui/suggestions/for-loop-missing-in.fixed b/tests/ui/suggestions/for-loop-missing-in.fixed new file mode 100644 index 00000000000..ff376b5a52c --- /dev/null +++ b/tests/ui/suggestions/for-loop-missing-in.fixed @@ -0,0 +1,8 @@ +//@ run-rustfix + +fn main() { + for _i in 0..2 { //~ ERROR missing `in` + } + for _i in 0..2 { //~ ERROR missing `in` + } +} |
