This website requires JavaScript.
Explore
Help
Register
Sign In
rust-lang
/
rust
Watch
1
Star
0
Fork
0
You've already forked rust
Code
Issues
Pull Requests
Actions
1
Packages
Projects
Releases
Wiki
Activity
Files
b3827e4f3728b77bd3e60587487ebfc3cc8d901b
rust
/
tests
/
ui
/
macros
/
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 22:21:40 +01:00
#[
macro_export
]
macro_rules
!
fancy_panic
{
Silence non_fmt_panic from external macros.
2021-08-12 14:33:30 +02:00
(
)
=
>
{
panic!
(
"
{}
"
)
;
}
;
Add test for panic_fmt lint with external panic!()-calling macro.
2020-10-29 22:21:40 +01:00
(
$msg
:
expr
)
=
>
{
panic!
(
$msg
)
}
;
}
Reference in New Issue
Copy Permalink