Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
test-attrs
/
test-vs-cfg-test.rs
blob: d7d9e61103c9a47e542d0d162cf267b2692a1061 [
file
] [
log
] [
blame
]
//@ run-pass
//@ compile-flags: --cfg test
// Make sure `--cfg test` does not inject test harness
#[
test
]
fn
test
()
{
panic
!();
}
fn
main
()
{}