summaryrefslogtreecommitdiffstats
path: root/src/test/ui/proc-macro/attribute-spans-preserved.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/proc-macro/attribute-spans-preserved.rs')
-rw-r--r--src/test/ui/proc-macro/attribute-spans-preserved.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/test/ui/proc-macro/attribute-spans-preserved.rs b/src/test/ui/proc-macro/attribute-spans-preserved.rs
deleted file mode 100644
index c01fce905..000000000
--- a/src/test/ui/proc-macro/attribute-spans-preserved.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-// aux-build:attribute-spans-preserved.rs
-
-extern crate attribute_spans_preserved as foo;
-
-use foo::foo;
-
-#[ foo ( let y: u32 = "z"; ) ] //~ ERROR: mismatched types
-#[ bar { let x: u32 = "y"; } ] //~ ERROR: mismatched types
-fn main() {
-}