about summary refs log tree commit diff
path: root/src/test/ui/macros/rfc-2011-nicer-assert-messages/assert-with-custom-errors-does-not-create-unnecessary-code.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/macros/rfc-2011-nicer-assert-messages/assert-with-custom-errors-does-not-create-unnecessary-code.rs')
-rw-r--r--src/test/ui/macros/rfc-2011-nicer-assert-messages/assert-with-custom-errors-does-not-create-unnecessary-code.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/test/ui/macros/rfc-2011-nicer-assert-messages/assert-with-custom-errors-does-not-create-unnecessary-code.rs b/src/test/ui/macros/rfc-2011-nicer-assert-messages/assert-with-custom-errors-does-not-create-unnecessary-code.rs
deleted file mode 100644
index 6a1435f792b..00000000000
--- a/src/test/ui/macros/rfc-2011-nicer-assert-messages/assert-with-custom-errors-does-not-create-unnecessary-code.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-// compile-flags: --test
-// run-pass
-
-#![feature(core_intrinsics, generic_assert, generic_assert_internals)]
-
-#[should_panic(expected = "Custom user message")]
-#[test]
-fn test() {
-  assert!(1 == 3, "Custom user message");
-}
-
-fn main() {
-}