You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
436 B

diff --git a/tests/test_backtrace.rs b/tests/test_backtrace.rs
deleted file mode 100644
index ce385f5..0000000
--- a/tests/test_backtrace.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-#[rustversion::not(nightly)]
-#[ignore]
-#[test]
-fn test_backtrace() {}
-
-#[rustversion::nightly]
-#[test]
-fn test_backtrace() {
- use anyhow::anyhow;
-
- let error = anyhow!("oh no!");
- let _ = error.backtrace();
-}
--
2.30.0.478.g8a0d178c01-goog