mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-21 08:48:01 +00:00
11 lines
190 B
Rust
11 lines
190 B
Rust
// No error, panic handler is supplied by libstd linked though the empty library.
|
|
|
|
//@ check-pass
|
|
//@ aux-build: cfg_false_lib.rs
|
|
|
|
#![no_std]
|
|
|
|
extern crate cfg_false_lib as _;
|
|
|
|
fn main() {}
|