about summary refs log tree commit diff
path: root/compiler/rustc_ast_passes/src/feature_gate.rs
AgeCommit message (Expand)AuthorLines
2021-10-05Allow adding a set of cfg's to hide from being implicitly doc(cfg)'dWim Looman-0/+1
2021-09-16delay error for enabling unstable lib featuresVishad Goyal-0/+6
2021-09-09Revert "Implement Anonymous{Struct, Union} in the AST"Felix S. Klock II-1/+0
2021-08-30`feature(const_generics)` -> `feature(const_param_types)`lcnr-1/+0
2021-08-27Introduce `~const`Deadbeef-1/+0
2021-08-21Remove `Session.used_attrs` and move logic to `CheckAttrVisitor`Aaron Hill-3/+3
2021-08-18Auto merge of #86860 - fee1-dead:stabilize, r=LeSeulArtichautbors-62/+2
2021-08-10Replace #[plugin_registrar] with exporting __rustc_plugin_registrarbjorn3-8/+0
2021-07-28Stabilize `arbitrary_enum_discriminant`Deadbeef-62/+2
2021-07-27Make all tests use type_alias_impl_trait feature instead of minSantiago Pastorino-1/+1
2021-07-11Auto merge of #83918 - workingjubilee:stable-rangefrom-pat, r=joshtriplettbors-1/+17
2021-06-10Add support for using qualified paths with structs in expression and patternRyan Levick-0/+1
2021-06-04Remove `doc(include)`Joshua Nelson-1/+0
2021-06-03Reestablish feature gate for RangeFrom in slicesJubilee Young-0/+16
2021-05-18Stabilize extended_key_value_attributesJoshua Nelson-4/+0
2021-05-16Implement Anonymous{Struct, Union} in the ASTjedel1043-0/+1
2021-05-05Implement RFC 2951: Native link modifiersLuqman Aden-0/+39
2021-04-28Auto merge of #83713 - spastorino:revert-pub-macro-rules, r=nikomatsakisbors-1/+0
2021-04-25'const fn' in trait are rejected in the AST, this feature gate check is a NOPRalf Jung-6/+1
2021-04-24Auto merge of #83722 - jyn514:stable-help, r=estebankbors-3/+33
2021-04-23Revert "Rollup merge of #82296 - spastorino:pubrules, r=nikomatsakis"Santiago Pastorino-1/+0
2021-04-18Auto merge of #83799 - crlf0710:stablize_non_ascii_idents, r=Manishearthbors-12/+1
2021-04-16Remove #[main] attribute.Charles Lew-10/+0
2021-04-08rustc: Add a new `wasm` ABIAlex Crichton-0/+8
2021-04-08Stablize `non_ascii_idents` feature.Charles Lew-12/+1
2021-04-05Allow exclusive range-from patternsJubilee Young-1/+1
2021-04-02On stable, suggest removing `#![feature]` for features that have been stabilizedJoshua Nelson-3/+33
2021-04-02Auto merge of #80965 - camelid:rename-doc-spotlight, r=jyn514bors-1/+1
2021-03-19stabilize or_patternsmark-1/+0
2021-03-15Rename `#[doc(spotlight)]` to `#[doc(notable_trait)]`Camelid-1/+1
2021-03-15Replace `type_alias_impl_trait` by `min_type_alias_impl_trait` with no actual...Oli Scherer-1/+1
2021-03-09rustc_target: add "unwind" payloads to `Abi`katelyn a. martin-0/+32
2021-03-07Add help for `matches` for `if let` in arm guardEsteban Küber-1/+5
2021-03-07Add help suggesting `matches` to `let_chains` lintEsteban Küber-1/+5
2021-02-19Support `pub` on `macro_rules`Vadim Petrochenkov-0/+1
2021-02-03Auto merge of #81346 - hug-dev:nonsecure-call-abi, r=jonas-schievinkbors-0/+8
2021-02-02Add a new ABI to support cmse_nonsecure_callHugues de Valon-0/+8
2021-02-01Box the biggest ast::ItemKind variantsDániel Buga-5/+9
2021-01-14Use Option::map_or instead of `.map(..).unwrap_or(..)`LingMan-1/+1
2021-01-12Auto merge of #76580 - rokob:iss76011, r=estebankbors-1/+26
2021-01-01make `const_generics_defaults` use the unstable syntax mechanismRémy Rakic-0/+4
2020-12-29Use Option::map_or instead of open coding itLingMan-4/+2
2020-12-26stabilize min_const_genericsBastian Kauschke-14/+1
2020-12-17Change the message for `if_let_guard` feature gateLeSeulArtichaut-1/+1
2020-12-09Accept arbitrary expressions in key-value attributes at parse timeVadim Petrochenkov-0/+4
2020-11-23Rename `optin_builtin_traits` to `auto_traits`Camelid-1/+1
2020-11-14Add underscore expressions for destructuring assignmentsFabian Zaiser-1/+5
2020-11-11Implement destructuring assignment for structs and slicesFabian Zaiser-0/+1
2020-10-16Add inline_const feature flagSantiago Pastorino-0/+1
2020-09-22Suggest async {} for async || {}Andy Weiss-1/+26