]> git.lizzy.rs Git - rust.git/blob - src/test/ui/panic-runtime/needs-gate.rs
Sync rust-lang/portable-simd@5f49d4c8435a25d804b2f375e949cb25479f5be9
[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() {}