blob: 95765a719ed581f0a03b4e70de8b9f886a8a7217 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//! 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();
}
|