summaryrefslogtreecommitdiff
path: root/tests/ui/test-attrs/test-type.rs
blob: f99e476eabae3702557e61c7608f85d2afce64bb (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
// 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() {}