diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2020-01-02 11:41:57 +0100 |
|---|---|---|
| committer | Mazdak Farrokhzad <twingoow@gmail.com> | 2020-01-11 03:15:32 +0100 |
| commit | 6007641d2101e6489aa6b9a3ba84b6a2b9b04fa5 (patch) | |
| tree | 353a36be5e908f39eb2fe9d7f1b49e8934174acb /src/libsyntax/lib.rs | |
| parent | 175631311716d7dfeceec40d2587cde7142ffa8c (diff) | |
| download | rust-6007641d2101e6489aa6b9a3ba84b6a2b9b04fa5.tar.gz rust-6007641d2101e6489aa6b9a3ba84b6a2b9b04fa5.zip | |
gating diagnostics -> rustc_session::parse
Diffstat (limited to 'src/libsyntax/lib.rs')
| -rw-r--r-- | src/libsyntax/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libsyntax/lib.rs b/src/libsyntax/lib.rs index 7ee4ca4603c..ffb0d7e7f97 100644 --- a/src/libsyntax/lib.rs +++ b/src/libsyntax/lib.rs @@ -77,7 +77,8 @@ pub mod entry; pub mod expand; pub mod feature_gate { mod check; - pub use check::{check_attribute, check_crate, feature_err, feature_err_issue, get_features}; + pub use check::{check_attribute, check_crate, get_features}; + pub use rustc_session::parse::{feature_err, feature_err_issue}; } pub mod mut_visit; pub mod ptr; |
