From 045f8f69293fae924ee4998439ec0e34f98320be Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Sun, 1 Jan 2017 16:14:35 -0800 Subject: rustc: Stabilize the `proc_macro` feature This commit stabilizes the `proc_macro` and `proc_macro_lib` features in the compiler to stabilize the "Macros 1.1" feature of the language. Many more details can be found on the tracking issue, #35900. Closes #35900 --- src/test/run-make/issue-37839/a.rs | 1 - src/test/run-make/issue-37893/a.rs | 1 - src/test/run-make/issue-38237/foo.rs | 1 - src/test/run-make/rustc-macro-dep-files/bar.rs | 2 -- src/test/run-make/rustc-macro-dep-files/foo.rs | 2 -- 5 files changed, 7 deletions(-) (limited to 'src/test/run-make') diff --git a/src/test/run-make/issue-37839/a.rs b/src/test/run-make/issue-37839/a.rs index 3dff45388c7..052317438c2 100644 --- a/src/test/run-make/issue-37839/a.rs +++ b/src/test/run-make/issue-37839/a.rs @@ -8,6 +8,5 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -#![feature(proc_macro)] #![allow(unused)] #![crate_type = "proc-macro"] diff --git a/src/test/run-make/issue-37893/a.rs b/src/test/run-make/issue-37893/a.rs index 3dff45388c7..052317438c2 100644 --- a/src/test/run-make/issue-37893/a.rs +++ b/src/test/run-make/issue-37893/a.rs @@ -8,6 +8,5 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -#![feature(proc_macro)] #![allow(unused)] #![crate_type = "proc-macro"] diff --git a/src/test/run-make/issue-38237/foo.rs b/src/test/run-make/issue-38237/foo.rs index c291ffbf4e8..6fb315731de 100644 --- a/src/test/run-make/issue-38237/foo.rs +++ b/src/test/run-make/issue-38237/foo.rs @@ -9,7 +9,6 @@ // except according to those terms. #![crate_type = "proc-macro"] -#![feature(proc_macro, proc_macro_lib)] extern crate proc_macro; diff --git a/src/test/run-make/rustc-macro-dep-files/bar.rs b/src/test/run-make/rustc-macro-dep-files/bar.rs index a2db98049d2..03330c3d170 100644 --- a/src/test/run-make/rustc-macro-dep-files/bar.rs +++ b/src/test/run-make/rustc-macro-dep-files/bar.rs @@ -8,8 +8,6 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -#![feature(proc_macro)] - #[macro_use] extern crate foo; diff --git a/src/test/run-make/rustc-macro-dep-files/foo.rs b/src/test/run-make/rustc-macro-dep-files/foo.rs index bd9e9158c50..2f2524f6ef1 100644 --- a/src/test/run-make/rustc-macro-dep-files/foo.rs +++ b/src/test/run-make/rustc-macro-dep-files/foo.rs @@ -9,8 +9,6 @@ // except according to those terms. #![crate_type = "proc-macro"] -#![feature(proc_macro)] -#![feature(proc_macro_lib)] extern crate proc_macro; -- cgit 1.4.1-3-g733a5