rust/tests/run-make-fulldeps/libtest-json/f.rs
2023-01-11 09:32:08 +00:00

23 lines
236 B
Rust

#[test]
fn a() {
println!("print from successful test");
// Should pass
}
#[test]
fn b() {
assert!(false);
}
#[test]
#[should_panic]
fn c() {
assert!(false);
}
#[test]
#[ignore = "msg"]
fn d() {
assert!(false);
}