c703ff2655
Configure sanitize option when compiling with a sanitizer to make it possible to execute different code depending on whether given sanitizer is enabled or not.
4 lines
83 B
Rust
4 lines
83 B
Rust
#[cfg(not(sanitize = "thread"))]
|
|
//~^ `cfg(sanitize)` is experimental
|
|
fn main() {}
|