File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
//! # Feature gates
2
2
//!
3
3
//! This crate declares the set of past and present unstable features in the compiler.
4
- //! Feature gate checking itself is done in `libsyntax/feature_gate/check.rs` at the moment.
4
+ //! Feature gate checking itself is done in `librustc_ast_passes/feature_gate.rs`
5
+ //! at the moment.
5
6
//!
6
7
//! Features are enabled in programs via the crate-level attributes of
7
8
//! `#![feature(...)]` with a comma-separated list of features.
Original file line number Diff line number Diff line change @@ -1812,7 +1812,7 @@ declare_lint! {
1812
1812
}
1813
1813
1814
1814
declare_lint_pass ! (
1815
- /// Check for used feature gates in `INCOMPLETE_FEATURES` in `feature_gate .rs`.
1815
+ /// Check for used feature gates in `INCOMPLETE_FEATURES` in `librustc_feature/active .rs`.
1816
1816
IncompleteFeatures => [ INCOMPLETE_FEATURES ]
1817
1817
) ;
1818
1818
Original file line number Diff line number Diff line change 12
12
// the change when it happens.
13
13
//
14
14
// At the time of authoring, the attributes here are listed in the
15
- // order that they occur in libsyntax/feature_gate.rs .
15
+ // order that they occur in `librustc_feature` .
16
16
//
17
17
// Any builtin attributes that:
18
18
//
You can’t perform that action at this time.
0 commit comments