File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,9 @@ macro_rules! panic {
2929macro_rules! panic {
3030 // Expands to either `$crate::panic_2015` or `$crate::panic_2021`
3131 // depending on the edition of the caller.
32- ( $( $arg: tt) * ) => { /* compiler built-in */ } ;
32+ ( $( $arg: tt) * ) => {
33+ /* compiler built-in */
34+ } ;
3335}
3436
3537/// 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 {
2828macro_rules! panic {
2929 // Expands to either `$crate::panic_2015` or `$crate::panic_2021`
3030 // depending on the edition of the caller.
31- ( $( $arg: tt) * ) => { /* compiler built-in */ } ;
31+ ( $( $arg: tt) * ) => {
32+ /* compiler built-in */
33+ } ;
3234}
3335
3436/// Prints to the standard output.
You can’t perform that action at this time.
0 commit comments