summaryrefslogtreecommitdiffstats
path: root/tests/ui/test-attrs/test-type.rs
blob: d6d44a6b4461b448ec18a6ca2f8c674cce0b779a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// compile-flags: --test -Zpanic-abort-tests
// run-flags: --test-threads=1
// check-run-results
// normalize-stdout-test "finished in \d+\.\d+s" -> "finished in $$TIME"
// ignore-emscripten no threads support
// run-pass

#[test]
fn test_ok() {
    let _a = true;
}

#[test]
#[should_panic]
fn test_panic() {
    panic!();
}

#[test]
#[ignore = "msg"]
fn test_no_run() {
    loop {
        println!("Hello, world");
    }
}

fn main() {}