This website requires JavaScript.
Explore
Help
Sign In
nordic-dev.net
/
rust
Watch
2
Star
0
Fork
0
You've already forked rust
mirror of
https://github.com/rust-lang/rust.git
synced
2025-06-08 21:28:33 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
300901b705
rust
/
tests
/
ui
/
auxiliary
/
fancy-panic.rs
10 lines
135 B
Rust
Raw
Normal View
History
Unescape
Escape
Add test for panic_fmt lint with external panic!()-calling macro.
2020-10-29 21:21:40 +00:00
#[
macro_export
]
macro_rules
!
fancy_panic
{
Silence non_fmt_panic from external macros.
2021-08-12 12:33:30 +00:00
(
)
=
>
{
panic!
(
"
{}
"
)
;
}
;
Add test for panic_fmt lint with external panic!()-calling macro.
2020-10-29 21:21:40 +00:00
(
$msg
:
expr
)
=
>
{
panic!
(
$msg
)
}
;
}
Reference in New Issue
Copy Permalink