summary refs log tree commit diff
path: root/src/test/ui/macro_backtrace
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/macro_backtrace
parentcdbd8c2f2aa69c4b8fe6f004449440e87c4ab87e (diff)
downloadrust-fa2d9fc4b9e578d95fbf65613d1bf732fbdfb0d4.tar.gz
rust-fa2d9fc4b9e578d95fbf65613d1bf732fbdfb0d4.zip
Update UI tests
Diffstat (limited to 'src/test/ui/macro_backtrace')
-rw-r--r--src/test/ui/macro_backtrace/main.stderr34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/test/ui/macro_backtrace/main.stderr b/src/test/ui/macro_backtrace/main.stderr
index 48138ee711b..10eabca6353 100644
--- a/src/test/ui/macro_backtrace/main.stderr
+++ b/src/test/ui/macro_backtrace/main.stderr
@@ -1,30 +1,30 @@
 error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `error`
   --> $DIR/main.rs:19:20
    |
-18 | / macro_rules! pong {
-19 | |     () => { syntax error };
+LL | / macro_rules! pong {
+LL | |     () => { syntax error };
    | |                    ^^^^^ expected one of 8 possible tokens here
-20 | | }
+LL | | }
    | |_- in this expansion of `pong!`
 ...
-26 |       pong!();
+LL |       pong!();
    |       -------- in this macro invocation
 
 error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `error`
   --> $DIR/main.rs:19:20
    |
-18 | / macro_rules! pong {
-19 | |     () => { syntax error };
+LL | / macro_rules! pong {
+LL | |     () => { syntax error };
    | |                    ^^^^^ expected one of 8 possible tokens here
-20 | | }
+LL | | }
    | |_- in this expansion of `pong!`
 ...
-27 |       ping!();
+LL |       ping!();
    |       -------- in this macro invocation
    | 
   ::: <ping macros>:1:1
    |
-1  |   (  ) => { pong ! (  ) ; }
+LL |   (  ) => { pong ! (  ) ; }
    |   -------------------------
    |   |         |
    |   |         in this macro invocation
@@ -33,18 +33,18 @@ error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found
 error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `error`
   --> $DIR/main.rs:19:20
    |
-18 | / macro_rules! pong {
-19 | |     () => { syntax error };
+LL | / macro_rules! pong {
+LL | |     () => { syntax error };
    | |                    ^^^^^ expected one of 8 possible tokens here
-20 | | }
+LL | | }
    | |_- in this expansion of `pong!` (#5)
 ...
-28 |       deep!();
+LL |       deep!();
    |       -------- in this macro invocation (#1)
    | 
   ::: <deep macros>:1:1
    |
-1  |   (  ) => { foo ! (  ) ; }
+LL |   (  ) => { foo ! (  ) ; }
    |   ------------------------
    |   |         |
    |   |         in this macro invocation (#2)
@@ -52,7 +52,7 @@ error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found
    | 
   ::: <foo macros>:1:1
    |
-1  |   (  ) => { bar ! (  ) ; }
+LL |   (  ) => { bar ! (  ) ; }
    |   ------------------------
    |   |         |
    |   |         in this macro invocation (#3)
@@ -60,7 +60,7 @@ error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found
    | 
   ::: <bar macros>:1:1
    |
-1  |   (  ) => { ping ! (  ) ; }
+LL |   (  ) => { ping ! (  ) ; }
    |   -------------------------
    |   |         |
    |   |         in this macro invocation (#4)
@@ -68,7 +68,7 @@ error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found
    | 
   ::: <ping macros>:1:1
    |
-1  |   (  ) => { pong ! (  ) ; }
+LL |   (  ) => { pong ! (  ) ; }
    |   -------------------------
    |   |         |
    |   |         in this macro invocation (#5)