2024-02-16 20:02:50 +00:00
|
|
|
//@ run-pass
|
|
|
|
|
//@ compile-flags:--test
|
2014-08-09 00:01:05 +10:00
|
|
|
|
|
|
|
|
#![reexport_test_harness_main = "test_main"]
|
|
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
fn _unused() {
|
|
|
|
|
// should resolve to the entry point function the --test harness
|
|
|
|
|
// creates.
|
|
|
|
|
test_main();
|
|
|
|
|
}
|