mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-11 08:05:12 +00:00
12 lines
286 B
Rust
12 lines
286 B
Rust
// Currently no error because the panic handler is supplied by libstd linked though the empty
|
|
// library, but the desirable behavior is unclear (see comments in cfg_false_lib.rs).
|
|
|
|
// check-pass
|
|
// aux-build: cfg_false_lib.rs
|
|
|
|
#![no_std]
|
|
|
|
extern crate cfg_false_lib as _;
|
|
|
|
fn main() {}
|