Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
test-attrs
/
test-vs-cfg-test.rs
blob: d7d9e61103c9a47e542d0d162cf267b2692a1061 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
//@ compile-flags: --cfg test
// Make sure `--cfg test` does not inject test harness
#[
test
]
fn
test
()
{
panic
!();
}
fn
main
()
{}