]> git.lizzy.rs Git - rust.git/blob - src/test/ui/panic-runtime/needs-gate.rs
Auto merge of #106025 - matthiaskrgr:rollup-vz5rqah, r=matthiaskrgr
[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() {}