Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
resolve
/
no-std-2.rs
blob: e5be5edc216613164d4c41d97cc044674c73cd64 [
file
] [
log
] [
blame
]
//@ run-pass
#![
no_std
]
extern
crate std
;
fn
main
()
{
let
a
=
core
::
option
::
Option
::
Some
(
"foo"
);
a
.
unwrap
();
}