Sign in
android
/
toolchain
/
rustc
/
d2dbbcd40813d506244f1255bc2c84088a0197e1
/
.
/
src
/
test
/
ui
/
resolve
/
no-std-1.rs
blob: 5b59e9b4eb3855f5579937810413ad5a494850f2 [
file
] [
log
] [
blame
]
// run-pass
#![
no_std
]
extern
crate std
;
fn
main
()
{
let
a
=
Some
(
"foo"
);
a
.
unwrap
();
}