]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/reexport-test-harness-main.rs
Auto merge of #61421 - vorner:string-in-rc-into-raw-docs, r=RalfJung
[rust.git] / src / test / run-pass / reexport-test-harness-main.rs
1 // compile-flags:--test
2
3 #![reexport_test_harness_main = "test_main"]
4
5 #[cfg(test)]
6 fn _unused() {
7     // should resolve to the entry point function the --test harness
8     // creates.
9     test_main();
10 }