Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
lint
/
auxiliary
/
deny-macro.rs
blob: 6106cd0ef175035146c110e6219937ccf3122c26 [
file
] [
log
] [
blame
] [
edit
]
#[
macro_export
]
macro_rules
!
emit_deny
{
()
=>
{
#[
deny
(
unsafe_code
)]
let
_so_safe
=
0
;
};
}