Rollup merge of #52472 - alexcrichton:macros-edition-2018, r=petrochenkov

rustc: Enable `use_extern_macros` in 2018 edition

This was previously enabled via `proc_macro`, but since `proc_macro` is now
stable this is no longer the case. Explicitly include it in the 2018 edition
here.
This commit is contained in:
kennytm 2018-07-18 22:35:03 +08:00 committed by GitHub
commit 5624d2a292
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -284,7 +284,7 @@ declare_features! (
// Allows #[link(..., cfg(..))]
(active, link_cfg, "1.14.0", Some(37406), None),
(active, use_extern_macros, "1.15.0", Some(35896), None),
(active, use_extern_macros, "1.15.0", Some(35896), Some(Edition::Edition2018)),
// `extern "ptx-*" fn()`
(active, abi_ptx, "1.15.0", Some(38788), None),