Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
test
/
ui
/
test-attrs
/
test-runner-hides-buried-main.rs
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
!();
}
})();
}
}