]> git.lizzy.rs Git - rust.git/blob - src/test/run-make-fulldeps/libtest-json/f.rs
Rollup merge of #98525 - JohnTitor:issue-79224, r=compiler-errors
[rust.git] / src / test / run-make-fulldeps / libtest-json / f.rs
1 #[test]
2 fn a() {
3     println!("print from successful test");
4     // Should pass
5 }
6
7 #[test]
8 fn b() {
9     assert!(false);
10 }
11
12 #[test]
13 #[should_panic]
14 fn c() {
15     assert!(false);
16 }
17
18 #[test]
19 #[ignore = "msg"]
20 fn d() {
21     assert!(false);
22 }