rustc/tests/ui/test-attrs/test-runner-hides-buried-main.rs
2024-06-21 09:39:33 +02:00

16 lines
204 B
Rust

//@ run-pass
//@ compile-flags: --test
#![feature(rustc_attrs)]
#![allow(dead_code)]
mod a {
fn b() {
(|| {
#[rustc_main]
fn c() { panic!(); }
})();
}
}