Files
rust/tests/ui/feature-gates/feature-gate-cfg-emscripten-wasm-eh.rs

5 lines
147 B
Rust
Raw Normal View History

//@ compile-flags: --check-cfg=cfg(emscripten_wasm_eh)
#[cfg(not(emscripten_wasm_eh))]
//~^ `cfg(emscripten_wasm_eh)` is experimental
fn main() {}