blob: edfe25086ae9a83e5f07145ffdd27bb59e8e6331 [file] [log] [blame] [edit]
#[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);
}