Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try-perf
/
.
/
tests
/
ui
/
imports
/
no-std-inject.rs
blob: 6dc866353465e1cc16df5385b957e119d0fa2f6c [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2015
#![
no_std
]
extern
crate core
;
//~ ERROR: the name `core` is defined multiple times
extern
crate std
;
fn
main
()
{}