Sign in
rust
/
rust
/
9ccafdc0f8d93f25159bee054ff1bd4e0143c8a4
/
.
/
tests
/
ui
/
panic-runtime
/
needs-gate.rs
blob: 9e143adfeb2158b33353e5282384d059c99fb02e [
file
]
// 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
()
{}