]> git.proxmox.com Git - rustc.git/blobdiff - tests/run-make-fulldeps/libtest-json/f.rs
Merge 1.70 into proxmox/bookworm
[rustc.git] / tests / run-make-fulldeps / libtest-json / f.rs
diff --git a/tests/run-make-fulldeps/libtest-json/f.rs b/tests/run-make-fulldeps/libtest-json/f.rs
deleted file mode 100644 (file)
index edfe250..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#[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);
-}