about summary refs log tree commit diff
path: root/src/test/ui/proc-macro/derive-same-struct.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/proc-macro/derive-same-struct.rs')
-rw-r--r--src/test/ui/proc-macro/derive-same-struct.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/ui/proc-macro/derive-same-struct.rs b/src/test/ui/proc-macro/derive-same-struct.rs
deleted file mode 100644
index 528b0f22a81..00000000000
--- a/src/test/ui/proc-macro/derive-same-struct.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-// run-pass
-
-#![allow(path_statements)]
-#![allow(dead_code)]
-// aux-build:derive-same-struct.rs
-
-#[macro_use]
-extern crate derive_same_struct;
-
-#[derive(AToB)]
-struct A;
-
-fn main() {
-    C;
-}