diff options
| author | bors <bors@rust-lang.org> | 2016-12-21 07:28:16 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2016-12-21 07:28:16 +0000 |
| commit | 439c3128d740af372dae163310f7292e999098e1 (patch) | |
| tree | 1c25753335b6a4b4d3c8eb882f521727bb30d90a /src/libsyntax | |
| parent | 92d46006bbb3d26e78aa3dc02e45a1761c7421e7 (diff) | |
| parent | 28e2c6aff90b8afef7722c825b381fc24172ac6b (diff) | |
Auto merge of #38099 - GuillaumeGomez:cast_suggestions, r=nikomatsakis
Cast suggestions r? @nikomatsakis
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index 77c53542dcb..e04cc11f15e 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -304,6 +304,7 @@ declare_features! ( // Allows using `Self` and associated types in struct expressions and patterns. (active, more_struct_aliases, "1.14.0", Some(37544)), + // Allows #[link(..., cfg(..))] (active, link_cfg, "1.14.0", Some(37406)), @@ -314,6 +315,9 @@ declare_features! ( // Allows #[target_feature(...)] (active, target_feature, "1.15.0", None), + + // Allow safe suggestions for potential type conversions. + (active, safe_suggestion, "1.0.0", Some(37384)), ); declare_features! ( |
