diff options
| author | bors <bors@rust-lang.org> | 2017-12-13 01:44:36 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2017-12-13 01:44:36 +0000 |
| commit | 691f022767aa5dec36635ab17bb767d5a80407db (patch) | |
| tree | e2d50547e9e9721d2b6d0ce401537206316f9590 /src/libsyntax | |
| parent | 442b7bd10ab1955832fac39e47671327747033c6 (diff) | |
| parent | b07e26e36e370b95c5fb3db418370d45a064d9ea (diff) | |
| download | rust-691f022767aa5dec36635ab17bb767d5a80407db.tar.gz rust-691f022767aa5dec36635ab17bb767d5a80407db.zip | |
Auto merge of #46613 - petrochenkov:absext, r=nikomatsakis
Resolve absolute paths as extern under a feature flag cc https://github.com/rust-lang/rust/issues/44660 r? @nikomatsakis
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index 22cef25320e..c7bfb121f80 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -430,6 +430,9 @@ declare_features! ( // generic associated types (RFC 1598) (active, generic_associated_types, "1.23.0", Some(44265)), + + // Resolve absolute paths as paths from other crates + (active, extern_absolute_paths, "1.24.0", Some(44660)), ); declare_features! ( |
