1 #[test] not_ignored()2 fn not_ignored() {} 3 4 #[test] 5 #[ignore] normally_ignored()6 fn normally_ignored() {} 7 8 #[test] 9 #[ignore = "special message"] ignored_with_message()10 fn ignored_with_message() {} 11