mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 14:10:03 +03:00
12 lines
232 B
Rust
12 lines
232 B
Rust
// 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() {}
|