Skip to content

Commit e857c1b

Browse files
committed
restore feature for stage0
1 parent e6f7cf7 commit e857c1b

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

src/librustc/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
#![feature(from_ref)]
5151
#![feature(fs_read_write)]
5252
#![cfg_attr(windows, feature(libc))]
53+
#![cfg_attr(stage0, feature(macro_lifetime_matcher))]
5354
#![feature(macro_vis_matcher)]
5455
#![feature(never_type)]
5556
#![feature(exhaustive_patterns)]

src/librustc_metadata/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#![feature(box_patterns)]
1616
#![feature(fs_read_write)]
1717
#![feature(libc)]
18+
#![cfg_attr(stage0, feature(macro_lifetime_matcher))]
1819
#![feature(proc_macro_internals)]
1920
#![feature(quote)]
2021
#![feature(rustc_diagnostic_macros)]

src/librustc_save_analysis/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
1313
html_root_url = "https://doc.rust-lang.org/nightly/")]
1414
#![feature(custom_attribute)]
15+
#![cfg_attr(stage0, feature(macro_lifetime_matcher))]
1516
#![allow(unused_attributes)]
1617

1718
#[macro_use]

0 commit comments

Comments
 (0)