mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-24 22:27:24 +00:00
15 lines
367 B
Rust
15 lines
367 B
Rust
//! Check that `#[reexport_test_harness_main]` correctly reexports the test harness entry point
|
|
//! and allows it to be called from within the code.
|
|
|
|
//@ 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();
|
|
}
|