]> git.lizzy.rs Git - rust.git/blob - src/test/ui/reexport-test-harness-main.rs
Add 'library/portable-simd/' from commit '1ce1c645cf27c4acdefe6ec8a11d1f0491954a99'
[rust.git] / src / test / ui / reexport-test-harness-main.rs
1 // run-pass
2 // compile-flags:--test
3
4 #![reexport_test_harness_main = "test_main"]
5
6 #[cfg(test)]
7 fn _unused() {
8     // should resolve to the entry point function the --test harness
9     // creates.
10     test_main();
11 }