8 lines
121 B
Rust
8 lines
121 B
Rust
|
#[macro_export]
|
||
|
macro_rules! emit_forbid {
|
||
|
() => {
|
||
|
#[forbid(unsafe_code)]
|
||
|
let _so_safe = 0;
|
||
|
};
|
||
|
}
|