Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
6d71251cf9e40326461f90f8ff9a7024706aea87
/
.
/
tests
/
ui
/
reexport-test-harness-main.rs
blob: f79828fc7d666002458667158a1c7198ce010689 [
file
] [
log
] [
blame
]
//@ run-pass
//@ compile-flags:--test
#![
reexport_test_harness_main
=
"test_main"
]
#[
cfg
(
test
)]
fn
_unused
()
{
// should resolve to the entry point function the --test harness
// creates.
test_main
();
}