]> git.lizzy.rs Git - rust.git/blob - tests/ui/test-attrs/test-filter-multiple.rs
internally change regions to be covariant
[rust.git] / tests / ui / test-attrs / test-filter-multiple.rs
1 // run-pass
2 // compile-flags: --test
3 // run-flags: --test-threads=1 test1 test2
4 // check-run-results
5 // normalize-stdout-test "finished in \d+\.\d+s" -> "finished in $$TIME"
6 // ignore-emscripten no threads support
7
8 #[test]
9 fn test1() {}
10
11 #[test]
12 fn test2() {}
13
14 #[test]
15 fn test3() {
16     panic!("this should not run");
17 }