rust/tests/ui/test-attrs/test-runner-hides-buried-main.rs
2023-01-11 09:32:08 +00:00

16 lines
202 B
Rust

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