Files
rust/tests/ui/cfg/cfg_false_no_std-1.rs
2026-03-05 22:45:17 -08:00

12 lines
258 B
Rust

// No error, panic handler is supplied by libstd linked though the empty library.
//@ check-pass
//@ aux-build: cfg_false_lib_no_std_after.rs
//@ reference: cfg.attr.crate-level-attrs
#![no_std]
extern crate cfg_false_lib_no_std_after as _;
fn main() {}