mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
202 B
Rust
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!(); }
|
|
})();
|
|
}
|
|
}
|