about summary refs log tree commit diff
path: root/src/test/run-pass-fulldeps
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2018-08-18 00:52:34 +0300
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2018-08-23 01:13:17 +0300
commitb34503e60ee674b31797790b2b8d8a20f1a54e48 (patch)
treec4123ae60902eb6a225a264e16bc8ce4115fcfd7 /src/test/run-pass-fulldeps
parentb75b0471a8b87c44e0bd953d2a5c36d896128723 (diff)
downloadrust-b34503e60ee674b31797790b2b8d8a20f1a54e48.tar.gz
rust-b34503e60ee674b31797790b2b8d8a20f1a54e48.zip
Stabilize a few secondary macro features
`tool_attributes`, `proc_macro_path_invoc`, partially `proc_macro_gen`
Diffstat (limited to 'src/test/run-pass-fulldeps')
-rw-r--r--src/test/run-pass-fulldeps/proc-macro/derive-b.rs2
-rw-r--r--src/test/run-pass-fulldeps/proc-macro/issue-42708.rs2
-rw-r--r--src/test/run-pass-fulldeps/proc-macro/issue-50061.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/test/run-pass-fulldeps/proc-macro/derive-b.rs b/src/test/run-pass-fulldeps/proc-macro/derive-b.rs
index 1de6496e29f..ac9eca38226 100644
--- a/src/test/run-pass-fulldeps/proc-macro/derive-b.rs
+++ b/src/test/run-pass-fulldeps/proc-macro/derive-b.rs
@@ -11,7 +11,7 @@
 // aux-build:derive-b.rs
 // ignore-stage1
 
-#![feature(proc_macro_path_invoc, unrestricted_attribute_tokens)]
+#![feature(unrestricted_attribute_tokens)]
 
 extern crate derive_b;
 
diff --git a/src/test/run-pass-fulldeps/proc-macro/issue-42708.rs b/src/test/run-pass-fulldeps/proc-macro/issue-42708.rs
index d4af99f97c5..7bbdbc6505d 100644
--- a/src/test/run-pass-fulldeps/proc-macro/issue-42708.rs
+++ b/src/test/run-pass-fulldeps/proc-macro/issue-42708.rs
@@ -11,7 +11,7 @@
 // aux-build:issue-42708.rs
 // ignore-stage1
 
-#![feature(decl_macro, proc_macro_path_invoc)]
+#![feature(decl_macro)]
 #![allow(unused)]
 
 extern crate issue_42708;
diff --git a/src/test/run-pass-fulldeps/proc-macro/issue-50061.rs b/src/test/run-pass-fulldeps/proc-macro/issue-50061.rs
index 53783e7fedb..410faaeb3ee 100644
--- a/src/test/run-pass-fulldeps/proc-macro/issue-50061.rs
+++ b/src/test/run-pass-fulldeps/proc-macro/issue-50061.rs
@@ -11,7 +11,7 @@
 // aux-build:issue-50061.rs
 // ignore-stage1
 
-#![feature(proc_macro_path_invoc, decl_macro)]
+#![feature(decl_macro)]
 
 extern crate issue_50061;