summaryrefslogtreecommitdiffstats
path: root/src/test/ui/panic-runtime/needs-gate.rs
blob: 9e143adfeb2158b33353e5282384d059c99fb02e (plain)
1
2
3
4
5
6
7
// gate-test-needs_panic_runtime
// gate-test-panic_runtime

#![panic_runtime] //~ ERROR: is an experimental feature
#![needs_panic_runtime] //~ ERROR: is an experimental feature

fn main() {}