summaryrefslogtreecommitdiffstats
path: root/src/test/ui/proc-macro/expand-to-unstable-2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/proc-macro/expand-to-unstable-2.rs')
-rw-r--r--src/test/ui/proc-macro/expand-to-unstable-2.rs17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/test/ui/proc-macro/expand-to-unstable-2.rs b/src/test/ui/proc-macro/expand-to-unstable-2.rs
deleted file mode 100644
index 4160e5418..000000000
--- a/src/test/ui/proc-macro/expand-to-unstable-2.rs
+++ /dev/null
@@ -1,17 +0,0 @@
-// aux-build:derive-unstable-2.rs
-
-#![feature(register_attr)]
-
-#![register_attr(rustc_foo)]
-
-#[macro_use]
-extern crate derive_unstable_2;
-
-#[derive(Unstable)]
-//~^ ERROR attributes starting with `rustc` are reserved for use by the `rustc` compiler
-
-struct A;
-
-fn main() {
- foo();
-}