diff options
| author | bors <bors@rust-lang.org> | 2015-03-07 03:28:03 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-03-07 03:28:03 +0000 |
| commit | 270a677d4d698916f5ad103f0afc3c070b8dbeb4 (patch) | |
| tree | 62f22a53145acb3ea1fd95d8d4262ab9a342a421 /src/libsyntax | |
| parent | 4d716decb5d9944bc0d79cdc51b03e3af69bc59c (diff) | |
| parent | aed31ee08e9adff815e8a5df2499f2e4c6e7916b (diff) | |
| download | rust-270a677d4d698916f5ad103f0afc3c070b8dbeb4.tar.gz rust-270a677d4d698916f5ad103f0afc3c070b8dbeb4.zip | |
Auto merge of #23107 - Manishearth:rollup, r=alexcrichton
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libsyntax/lib.rs b/src/libsyntax/lib.rs index 7bd9cc3b855..ba3f495cdac 100644 --- a/src/libsyntax/lib.rs +++ b/src/libsyntax/lib.rs @@ -14,6 +14,8 @@ //! //! This API is completely unstable and subject to change. +// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364) +#![cfg_attr(stage0, feature(custom_attribute))] #![crate_name = "syntax"] #![unstable(feature = "rustc_private")] #![staged_api] @@ -37,8 +39,8 @@ #![feature(std_misc)] #![feature(unicode)] #![feature(path)] -#![feature(fs)] #![feature(io)] +#![feature(path_ext)] extern crate arena; extern crate fmt_macros; |
