Sign in
android
/
toolchain
/
rustc
/
15a6560abe9880705f51d219c1fa94f880dbaf35
/
.
/
src
/
tools
/
miri
/
tests
/
run-pass
/
panic
/
div-by-zero-2.rs
blob: cfacc9db0d666b70c4a583666e7adc4b81b2b64a [
file
] [
log
] [
blame
]
// ignore-windows: Unwind panicking does not currently work on Windows
#![
allow
(
unconditional_panic
)]
fn
main
()
{
let
_n
=
1
/
0
;
}