Skip to content

Commit aa6cc6e

Browse files
committed
Fix test in macro_backtrace
1 parent 0ac4659 commit aa6cc6e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/test/ui/macro_backtrace/main.stderr

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found
2222
27 | ping!();
2323
| -------- in this macro invocation
2424
|
25-
::: <ping macros>
25+
::: <ping macros>:1:1
2626
|
2727
1 | ( ) => { pong ! ( ) ; }
2828
| -------------------------
@@ -42,31 +42,31 @@ error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found
4242
28 | deep!();
4343
| -------- in this macro invocation (#1)
4444
|
45-
::: <deep macros>
45+
::: <deep macros>:1:1
4646
|
4747
1 | ( ) => { foo ! ( ) ; }
4848
| ------------------------
4949
| | |
5050
| | in this macro invocation (#2)
5151
| in this expansion of `deep!` (#1)
5252
|
53-
::: <foo macros>
53+
::: <foo macros>:1:1
5454
|
5555
1 | ( ) => { bar ! ( ) ; }
5656
| ------------------------
5757
| | |
5858
| | in this macro invocation (#3)
5959
| in this expansion of `foo!` (#2)
6060
|
61-
::: <bar macros>
61+
::: <bar macros>:1:1
6262
|
6363
1 | ( ) => { ping ! ( ) ; }
6464
| -------------------------
6565
| | |
6666
| | in this macro invocation (#4)
6767
| in this expansion of `bar!` (#3)
6868
|
69-
::: <ping macros>
69+
::: <ping macros>:1:1
7070
|
7171
1 | ( ) => { pong ! ( ) ; }
7272
| -------------------------

0 commit comments

Comments
 (0)