rust/tests/ui/reexport-test-harness-main.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
215 B
Rust
Raw Normal View History

// 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();
}