@@ -24,10 +24,10 @@ LL | ping!();
2424 |
2525 ::: <::ping::ping macros>:1:1
2626 |
27- LL | () => {pong ! () ; }
28- | --------------------
29- | | |
30- | | in this macro invocation
27+ LL | () => { pong ! () ; }
28+ | ---------------------
29+ | | |
30+ | | in this macro invocation
3131 | in this expansion of `ping!`
3232
3333error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `error`
@@ -44,34 +44,34 @@ LL | deep!();
4444 |
4545 ::: <::ping::deep macros>:1:1
4646 |
47- LL | () => {foo ! () ; }
48- | -------------------
49- | | |
50- | | in this macro invocation (#2)
47+ LL | () => { foo ! () ; }
48+ | --------------------
49+ | | |
50+ | | in this macro invocation (#2)
5151 | in this expansion of `deep!` (#1)
5252 |
5353 ::: <::ping::foo macros>:1:1
5454 |
55- LL | () => {bar ! () ; }
56- | -------------------
57- | | |
58- | | in this macro invocation (#3)
55+ LL | () => { bar ! () ; }
56+ | --------------------
57+ | | |
58+ | | in this macro invocation (#3)
5959 | in this expansion of `foo!` (#2)
6060 |
6161 ::: <::ping::bar macros>:1:1
6262 |
63- LL | () => {ping ! () ; }
64- | --------------------
65- | | |
66- | | in this macro invocation (#4)
63+ LL | () => { ping ! () ; }
64+ | ---------------------
65+ | | |
66+ | | in this macro invocation (#4)
6767 | in this expansion of `bar!` (#3)
6868 |
6969 ::: <::ping::ping macros>:1:1
7070 |
71- LL | () => {pong ! () ; }
72- | --------------------
73- | | |
74- | | in this macro invocation (#5)
71+ LL | () => { pong ! () ; }
72+ | ---------------------
73+ | | |
74+ | | in this macro invocation (#5)
7575 | in this expansion of `ping!` (#4)
7676
7777error: aborting due to 3 previous errors
0 commit comments