about summary refs log tree commit diff
path: root/tests/crashes/123912.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/crashes/123912.rs')
-rw-r--r--tests/crashes/123912.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/crashes/123912.rs b/tests/crashes/123912.rs
deleted file mode 100644
index 35216caabcd..00000000000
--- a/tests/crashes/123912.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-//@ known-bug: #123912
-
-macro_rules! m {
-    ($attr_path: path) => {
-        #[$attr_path]
-        fn f() {}
-    }
-}
-
-m!(inline<{
-    let a = CharCharFloat { a: 1 };
-    println!("a: {}", a);
-}>);
-
-fn main() {}