Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
panics
/
location-detail-unwrap-no-file.rs
blob: 4398e5e0b04a55ee11d14c7a06b15230972574b0 [
file
] [
log
] [
blame
] [
edit
]
//@ run-fail
//@ check-run-results
//@ compile-flags: -Copt-level=0 -Zlocation-detail=line,column
//@ exec-env:RUST_BACKTRACE=0
fn
main
()
{
let
opt
:
Option
<
u32
>
=
None
;
opt
.
unwrap
();
}