Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
no-core-1.rs
blob: d6d2ba6044585d44b9c8c122cb3e5afbd91b6d74 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
stable_features
)]
#![
feature
(
no_core
,
core
)]
#![
no_core
]
extern
crate std
;
extern
crate core
;
use
std
::
option
::
Option
::
Some
;
fn
main
()
{
let
a
=
Some
(
"foo"
);
a
.
unwrap
();
}