Sign in
rust
/
rust
/
a5a286df89146c64afebc6dcbbd3f61ba67ae53b
/
.
/
tests
/
ui
/
cfg
/
cfg_false_no_std.rs
blob: 08032c5a91e6fb6545f162dfa679fec5c55e8eff [
file
]
// No error, panic handler is supplied by libstd linked though the empty library.
//@ check-pass
//@ aux-build: cfg_false_lib.rs
//@ reference: cfg.attr.crate-level-attrs
#![
no_std
]
extern
crate cfg_false_lib
as
_
;
fn
main
()
{}