Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
test-attrs
/
run-unexported-tests.rs
blob: fc73eb519d21fb7852bb11b8d59defb11fe88320 [
file
] [
log
] [
blame
] [
edit
]
//@ run-fail
//@ compile-flags:--test
//@ check-stdout
mod
m
{
pub
fn
exported
()
{}
#[
test
]
fn
unexported
()
{
panic
!(
"ran an unexported test"
);
}
}