@@ -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
@@ -675,21 +672,23 @@ declare_features! (
675
672
( accepted, extern_prelude, "1.30.0" , Some ( 44660 ) , None ) ,
676
673
// Parentheses in patterns
677
674
( accepted, pattern_parentheses, "1.31.0" , Some ( 51087 ) , None ) ,
678
- // Allows the definition of `const fn` functions.
675
+ // Allows the definition of `const fn` functions
679
676
( accepted, min_const_fn, "1.31.0" , Some ( 53555 ) , None ) ,
680
677
// Scoped lints
681
678
( accepted, tool_lints, "1.31.0" , Some ( 44690 ) , None ) ,
682
679
// impl<I:Iterator> Iterator for &mut Iterator
683
680
// impl Debug for Foo<'_>
684
681
( accepted, impl_header_lifetime_elision, "1.31.0" , Some ( 15872 ) , None ) ,
685
- // `extern crate foo as bar;` puts `bar` into extern prelude.
682
+ // `extern crate foo as bar;` puts `bar` into extern prelude
686
683
( accepted, extern_crate_item_prelude, "1.31.0" , Some ( 55599 ) , None ) ,
687
684
// Allows use of the :literal macro fragment specifier (RFC 1576)
688
685
( accepted, macro_literal_matcher, "1.31.0" , Some ( 35625 ) , None ) ,
689
686
// Use `?` as the Kleene "at most one" operator
690
687
( accepted, macro_at_most_once_rep, "1.32.0" , Some ( 48075 ) , None ) ,
691
- // Self struct constructor (RFC 2302)
688
+ // ` Self` struct constructor (RFC 2302)
692
689
( accepted, self_struct_ctor, "1.32.0" , Some ( 51994 ) , None ) ,
690
+ // `Self` in type definitions (RFC 2300)
691
+ ( accepted, self_in_typedefs, "1.32.0" , Some ( 49303 ) , None ) ,
693
692
) ;
694
693
695
694
// If you change this, please modify `src/doc/unstable-book` as well. You must
0 commit comments