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