2023-04-10 14:20:38 +03:00
|
|
|
// No error, panic handler is supplied by libstd linked though the empty library.
|
2023-03-14 16:09:39 +04:00
|
|
|
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ check-pass
|
|
|
|
|
//@ aux-build: cfg_false_lib.rs
|
2023-03-14 16:09:39 +04:00
|
|
|
|
|
|
|
|
#![no_std]
|
|
|
|
|
|
|
|
|
|
extern crate cfg_false_lib as _;
|
|
|
|
|
|
|
|
|
|
fn main() {}
|