@@ -462,9 +462,6 @@ declare_features! (
462
462
// Allows `use x::y;` to resolve through `self::x`, not just `::x`
463
463
( active, uniform_paths, "1.30.0" , Some ( 53130 ) , None ) ,
464
464
465
- // Allows `Self` in type definitions
466
- ( active, self_in_typedefs, "1.30.0" , Some ( 49303 ) , None ) ,
467
-
468
465
// Allows unsized rvalues at arguments and parameters
469
466
( active, unsized_locals, "1.30.0" , Some ( 48055 ) , None ) ,
470
467
@@ -672,21 +669,23 @@ declare_features! (
672
669
( accepted, extern_prelude, "1.30.0" , Some ( 44660 ) , None ) ,
673
670
// Parentheses in patterns
674
671
( accepted, pattern_parentheses, "1.31.0" , Some ( 51087 ) , None ) ,
675
- // Allows the definition of `const fn` functions.
672
+ // Allows the definition of `const fn` functions
676
673
( accepted, min_const_fn, "1.31.0" , Some ( 53555 ) , None ) ,
677
674
// Scoped lints
678
675
( accepted, tool_lints, "1.31.0" , Some ( 44690 ) , None ) ,
679
676
// impl<I:Iterator> Iterator for &mut Iterator
680
677
// impl Debug for Foo<'_>
681
678
( accepted, impl_header_lifetime_elision, "1.31.0" , Some ( 15872 ) , None ) ,
682
- // `extern crate foo as bar;` puts `bar` into extern prelude.
679
+ // `extern crate foo as bar;` puts `bar` into extern prelude
683
680
( accepted, extern_crate_item_prelude, "1.31.0" , Some ( 55599 ) , None ) ,
684
681
// Allows use of the :literal macro fragment specifier (RFC 1576)
685
682
( accepted, macro_literal_matcher, "1.31.0" , Some ( 35625 ) , None ) ,
686
683
// Use `?` as the Kleene "at most one" operator
687
684
( accepted, macro_at_most_once_rep, "1.32.0" , Some ( 48075 ) , None ) ,
688
- // Self struct constructor (RFC 2302)
685
+ // ` Self` struct constructor (RFC 2302)
689
686
( accepted, self_struct_ctor, "1.32.0" , Some ( 51994 ) , None ) ,
687
+ // `Self` in type definitions (RFC 2300)
688
+ ( accepted, self_in_typedefs, "1.32.0" , Some ( 49303 ) , None ) ,
690
689
) ;
691
690
692
691
// If you change this, please modify `src/doc/unstable-book` as well. You must
0 commit comments