rust/src/test/ui/panic-runtime/needs-gate.rs
2018-12-25 21:08:33 -07:00

7 lines
193 B
Rust

// gate-test-needs_panic_runtime
// gate-test-panic_runtime
#![panic_runtime] //~ ERROR: is an experimental feature
#![needs_panic_runtime] //~ ERROR: is an experimental feature
fn main() {}