summaryrefslogtreecommitdiffstats
path: root/src/test/ui/macros/assert-macro-owned.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/macros/assert-macro-owned.rs')
-rw-r--r--src/test/ui/macros/assert-macro-owned.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/test/ui/macros/assert-macro-owned.rs b/src/test/ui/macros/assert-macro-owned.rs
deleted file mode 100644
index 753675872..000000000
--- a/src/test/ui/macros/assert-macro-owned.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-// run-fail
-// error-pattern:panicked at 'test-assert-owned'
-// ignore-emscripten no processes
-
-#![allow(non_fmt_panics)]
-
-fn main() {
- assert!(false, "test-assert-owned".to_string());
-}