]> git.lizzy.rs Git - rust.git/blob - src/test/ui/panic-runtime/needs-gate.rs
Rollup merge of #94577 - RalfJung:simd-miri, r=scottmcm
[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() {}