Sign in
◑
Theme
fuchsia
/
third_party
/
rust
/
HEAD
/
.
/
tests
/
run-make
/
locate-panic-runtime
/
std.rs
blob: 63eb75eca50a269449b4b16e83e149279b7a0874 [
file
]
// We are std.
#![
feature
(
needs_panic_runtime
,
no_core
)]
#![
allow
(
internal_features
)]
#![
no_std
]
#![
no_core
]
// Tell rustc to inject panic runtime.
#![
needs_panic_runtime
]
#![
crate_type
=
"rlib"
]
extern
crate core
;
pub
use
core
::*;