about summary refs log tree commit diff
path: root/tests/ui/parser/if-in-in.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/parser/if-in-in.stderr')
-rw-r--r--tests/ui/parser/if-in-in.stderr10
1 files changed, 7 insertions, 3 deletions
diff --git a/tests/ui/parser/if-in-in.stderr b/tests/ui/parser/if-in-in.stderr
index 6117370c0ce..d8def76792e 100644
--- a/tests/ui/parser/if-in-in.stderr
+++ b/tests/ui/parser/if-in-in.stderr
@@ -2,9 +2,13 @@ error: expected iterable, found keyword `in`
   --> $DIR/if-in-in.rs:4:14
    |
 LL |     for i in in 1..2 {
-   |           ---^^
-   |           |
-   |           help: remove the duplicated `in`
+   |              ^^
+   |
+help: remove the duplicated `in`
+   |
+LL -     for i in in 1..2 {
+LL +     for i in 1..2 {
+   |
 
 error: aborting due to 1 previous error