about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEsteban Küber <esteban@kuber.com.ar>2018-02-28 10:56:07 -0800
committerEsteban Küber <esteban@kuber.com.ar>2018-02-28 10:56:07 -0800
commit24be75d420bf316cb09c179781d6c1c63636fbc1 (patch)
tree4cb961b2fbe9ec66082f366a3c71b271cb46a327
parentd63d363ef9d6627dc9649477b337a3f915d0660e (diff)
downloadrust-24be75d420bf316cb09c179781d6c1c63636fbc1.tar.gz
rust-24be75d420bf316cb09c179781d6c1c63636fbc1.zip
fix rebase
-rw-r--r--src/test/ui/if-without-block.stderr4
-rw-r--r--src/test/ui/suggestions/missing-comma-in-match.stderr4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/test/ui/if-without-block.stderr b/src/test/ui/if-without-block.stderr
index 8f6e53bd28b..bc8e7310ce3 100644
--- a/src/test/ui/if-without-block.stderr
+++ b/src/test/ui/if-without-block.stderr
@@ -1,10 +1,10 @@
 error: expected `{`, found `}`
   --> $DIR/if-without-block.rs:17:1
    |
-13 |     if 5 == {
+LL |     if 5 == {
    |     -- this `if` statement has a condition, but no block
 ...
-17 | }
+LL | }
    | ^
 
 error: aborting due to previous error
diff --git a/src/test/ui/suggestions/missing-comma-in-match.stderr b/src/test/ui/suggestions/missing-comma-in-match.stderr
index 71123a160a5..b71a50b6631 100644
--- a/src/test/ui/suggestions/missing-comma-in-match.stderr
+++ b/src/test/ui/suggestions/missing-comma-in-match.stderr
@@ -1,9 +1,9 @@
 error: expected one of `,`, `.`, `?`, `}`, or an operator, found `=>`
   --> $DIR/missing-comma-in-match.rs:14:18
    |
-13 |         &None => 1
+LL |         &None => 1
    |                   - help: missing a comma here to end this `match` arm
-14 |         &Some(2) => { 3 }
+LL |         &Some(2) => { 3 }
    |                  ^^ expected one of `,`, `.`, `?`, `}`, or an operator here
 
 error: aborting due to previous error