rust/tests/ui/test-attrs/test-type.rs

28 lines
422 B
Rust

//@ 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"
//@ needs-threads
//@ 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() {}