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