about summary refs log tree commit diff
path: root/src/test/ui/span/issue-34264.stderr
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2018-02-23 03:42:32 +0300
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2018-02-26 20:24:02 +0300
commitfa2d9fc4b9e578d95fbf65613d1bf732fbdfb0d4 (patch)
tree1eb1a49b4750e2704d3d724fb4a12ea4e2237eff /src/test/ui/span/issue-34264.stderr
parentcdbd8c2f2aa69c4b8fe6f004449440e87c4ab87e (diff)
downloadrust-fa2d9fc4b9e578d95fbf65613d1bf732fbdfb0d4.tar.gz
rust-fa2d9fc4b9e578d95fbf65613d1bf732fbdfb0d4.zip
Update UI tests
Diffstat (limited to 'src/test/ui/span/issue-34264.stderr')
-rw-r--r--src/test/ui/span/issue-34264.stderr16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/test/ui/span/issue-34264.stderr b/src/test/ui/span/issue-34264.stderr
index eb2b1b84201..bf2de0f1125 100644
--- a/src/test/ui/span/issue-34264.stderr
+++ b/src/test/ui/span/issue-34264.stderr
@@ -1,34 +1,34 @@
 error: expected one of `:` or `@`, found `<`
   --> $DIR/issue-34264.rs:11:14
    |
-11 | fn foo(Option<i32>, String) {} //~ ERROR expected one of
+LL | fn foo(Option<i32>, String) {} //~ ERROR expected one of
    |              ^ expected one of `:` or `@` here
 
 error: expected one of `:` or `@`, found `)`
   --> $DIR/issue-34264.rs:11:27
    |
-11 | fn foo(Option<i32>, String) {} //~ ERROR expected one of
+LL | fn foo(Option<i32>, String) {} //~ ERROR expected one of
    |                           ^ expected one of `:` or `@` here
 
 error: expected one of `:` or `@`, found `,`
   --> $DIR/issue-34264.rs:13:9
    |
-13 | fn bar(x, y: usize) {} //~ ERROR expected one of
+LL | fn bar(x, y: usize) {} //~ ERROR expected one of
    |         ^ expected one of `:` or `@` here
 
 error[E0061]: this function takes 2 parameters but 3 parameters were supplied
   --> $DIR/issue-34264.rs:17:5
    |
-11 | fn foo(Option<i32>, String) {} //~ ERROR expected one of
+LL | fn foo(Option<i32>, String) {} //~ ERROR expected one of
    | --------------------------- defined here
 ...
-17 |     foo(Some(42), 2, ""); //~ ERROR this function takes
+LL |     foo(Some(42), 2, ""); //~ ERROR this function takes
    |     ^^^^^^^^^^^^^^^^^^^^ expected 2 parameters
 
 error[E0308]: mismatched types
   --> $DIR/issue-34264.rs:18:13
    |
-18 |     bar("", ""); //~ ERROR mismatched types
+LL |     bar("", ""); //~ ERROR mismatched types
    |             ^^ expected usize, found reference
    |
    = note: expected type `usize`
@@ -37,10 +37,10 @@ error[E0308]: mismatched types
 error[E0061]: this function takes 2 parameters but 3 parameters were supplied
   --> $DIR/issue-34264.rs:20:5
    |
-13 | fn bar(x, y: usize) {} //~ ERROR expected one of
+LL | fn bar(x, y: usize) {} //~ ERROR expected one of
    | ------------------- defined here
 ...
-20 |     bar(1, 2, 3); //~ ERROR this function takes
+LL |     bar(1, 2, 3); //~ ERROR this function takes
    |     ^^^^^^^^^^^^ expected 2 parameters
 
 error: aborting due to 6 previous errors