From c322d42ffeadec026c432dd0a59f2b1bfdf7ed9e Mon Sep 17 00:00:00 2001
From: Manuel Thalmann <m@nuth.ch>
Date: Sun, 2 Mar 2025 22:59:36 +0100
Subject: [PATCH] Add a failing test

---
 adder/src/lib.rs | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/adder/src/lib.rs b/adder/src/lib.rs
index 5014a76..336ea08 100644
--- a/adder/src/lib.rs
+++ b/adder/src/lib.rs
@@ -11,4 +11,9 @@ mod tests {
         let result = add(2, 2);
         assert_eq!(result, 4);
     }
+
+    #[test]
+    fn another() {
+        panic!("Make this test fail");
+    }
 }