]> git.lizzy.rs Git - rust.git/blob - src/test/ui/panic-runtime/needs-gate.rs
move an `assert!` to the right place
[rust.git] / src / test / ui / panic-runtime / needs-gate.rs
1 // gate-test-needs_panic_runtime
2 // gate-test-panic_runtime
3
4 #![panic_runtime] //~ ERROR: is an experimental feature
5 #![needs_panic_runtime] //~ ERROR: is an experimental feature
6
7 fn main() {}