blob: 95ff36bd764ec40afb19495ad8844dda458e42f6 [file] [log] [blame]
#[test]
fn a() {
println!("print from successful test");
// Should pass
}
#[test]
fn b() {
assert!(false);
}
#[test]
#[should_panic]
fn c() {
assert!(false);
}
#[test]
#[ignore]
fn d() {
assert!(false);
}