rust/tests/run-make/libtest-json/f.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
236 B
Rust
Raw Permalink Normal View History

#[test]
fn a() {
println!("print from successful test");
// Should pass
}
#[test]
fn b() {
assert!(false);
}
#[test]
#[should_panic]
fn c() {
assert!(false);
}
#[test]
2022-03-11 06:30:21 -06:00
#[ignore = "msg"]
fn d() {
assert!(false);
}