@@ -24,10 +24,10 @@ LL | ping!();
24
24
|
25
25
::: <::ping::ping macros>:1:1
26
26
|
27
- LL | () => {pong ! () ; }
28
- | --------------------
29
- | | |
30
- | | in this macro invocation
27
+ LL | () => { pong ! () ; }
28
+ | ---------------------
29
+ | | |
30
+ | | in this macro invocation
31
31
| in this expansion of `ping!`
32
32
33
33
error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `error`
@@ -44,34 +44,34 @@ LL | deep!();
44
44
|
45
45
::: <::ping::deep macros>:1:1
46
46
|
47
- LL | () => {foo ! () ; }
48
- | -------------------
49
- | | |
50
- | | in this macro invocation (#2)
47
+ LL | () => { foo ! () ; }
48
+ | --------------------
49
+ | | |
50
+ | | in this macro invocation (#2)
51
51
| in this expansion of `deep!` (#1)
52
52
|
53
53
::: <::ping::foo macros>:1:1
54
54
|
55
- LL | () => {bar ! () ; }
56
- | -------------------
57
- | | |
58
- | | in this macro invocation (#3)
55
+ LL | () => { bar ! () ; }
56
+ | --------------------
57
+ | | |
58
+ | | in this macro invocation (#3)
59
59
| in this expansion of `foo!` (#2)
60
60
|
61
61
::: <::ping::bar macros>:1:1
62
62
|
63
- LL | () => {ping ! () ; }
64
- | --------------------
65
- | | |
66
- | | in this macro invocation (#4)
63
+ LL | () => { ping ! () ; }
64
+ | ---------------------
65
+ | | |
66
+ | | in this macro invocation (#4)
67
67
| in this expansion of `bar!` (#3)
68
68
|
69
69
::: <::ping::ping macros>:1:1
70
70
|
71
- LL | () => {pong ! () ; }
72
- | --------------------
73
- | | |
74
- | | in this macro invocation (#5)
71
+ LL | () => { pong ! () ; }
72
+ | ---------------------
73
+ | | |
74
+ | | in this macro invocation (#5)
75
75
| in this expansion of `ping!` (#4)
76
76
77
77
error: aborting due to 3 previous errors
0 commit comments