There was an error while loading. Please reload this page.
1 parent dfe6bfe commit 932f723Copy full SHA for 932f723
2 files changed
library/core/src/macros/mod.rs
@@ -29,7 +29,9 @@ macro_rules! panic {
29
macro_rules! panic {
30
// Expands to either `$crate::panic_2015` or `$crate::panic_2021`
31
// depending on the edition of the caller.
32
- ($($arg:tt)*) => { /* compiler built-in */ };
+ ($($arg:tt)*) => {
33
+ /* compiler built-in */
34
+ };
35
}
36
37
/// Asserts that two expressions are equal to each other (using [`PartialEq`]).
library/std/src/macros.rs
@@ -28,7 +28,9 @@ macro_rules! panic {
28
/// Prints to the standard output.
0 commit comments