File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,9 @@ macro_rules! panic {
29
29
macro_rules! panic {
30
30
// Expands to either `$crate::panic_2015` or `$crate::panic_2021`
31
31
// depending on the edition of the caller.
32
- ( $( $arg: tt) * ) => { /* compiler built-in */ } ;
32
+ ( $( $arg: tt) * ) => {
33
+ /* compiler built-in */
34
+ } ;
33
35
}
34
36
35
37
/// Asserts that two expressions are equal to each other (using [`PartialEq`]).
Original file line number Diff line number Diff line change @@ -28,7 +28,9 @@ macro_rules! panic {
28
28
macro_rules! panic {
29
29
// Expands to either `$crate::panic_2015` or `$crate::panic_2021`
30
30
// depending on the edition of the caller.
31
- ( $( $arg: tt) * ) => { /* compiler built-in */ } ;
31
+ ( $( $arg: tt) * ) => {
32
+ /* compiler built-in */
33
+ } ;
32
34
}
33
35
34
36
/// Prints to the standard output.
You can’t perform that action at this time.
0 commit comments