]> git.lizzy.rs Git - rust.git/blob - src/test/ui/panic-runtime/needs-gate.rs
Merge commit '4c41a222ca5d1325fb4b6709395bd06e766cc042' into clippyup
[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() {}