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