File tree 6 files changed +3
-25
lines changed
6 files changed +3
-25
lines changed Original file line number Diff line number Diff line change @@ -549,7 +549,6 @@ macro_rules! write {
549
549
#[ macro_export]
550
550
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
551
551
#[ cfg_attr( not( test) , rustc_diagnostic_item = "writeln_macro" ) ]
552
- #[ allow_internal_unstable( format_args_ln) ]
553
552
macro_rules! writeln {
554
553
( $dst: expr $( , ) ?) => {
555
554
$crate:: write!( $dst, "\n " )
@@ -896,12 +895,7 @@ pub(crate) mod builtin {
896
895
}
897
896
898
897
/// Same as [`format_args`], but adds a newline in the end.
899
- #[ unstable(
900
- feature = "format_args_ln" ,
901
- issue = "none" ,
902
- reason = "`format_args_ln` is only for internal \
903
- language use and is subject to change"
904
- ) ]
898
+ #[ stable( feature = "format_args_ln" , since = "1.63.0" ) ]
905
899
#[ allow_internal_unstable( fmt_internals) ]
906
900
#[ cfg_attr( bootstrap, rustc_builtin_macro( format_args_nl) ) ]
907
901
#[ cfg_attr( not( bootstrap) , rustc_builtin_macro) ]
Original file line number Diff line number Diff line change 318
318
#![ feature( core_panic) ]
319
319
#![ feature( custom_test_frameworks) ]
320
320
#![ feature( edition_panic) ]
321
- #![ feature( format_args_ln) ]
322
321
#![ feature( log_syntax) ]
323
322
#![ feature( once_cell) ]
324
323
#![ feature( saturating_int_impl) ]
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ macro_rules! print {
97
97
#[ macro_export]
98
98
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
99
99
#[ cfg_attr( not( test) , rustc_diagnostic_item = "println_macro" ) ]
100
- #[ allow_internal_unstable( print_internals, format_args_ln ) ]
100
+ #[ allow_internal_unstable( print_internals) ]
101
101
macro_rules! println {
102
102
( ) => {
103
103
$crate:: print!( "\n " )
@@ -163,7 +163,7 @@ macro_rules! eprint {
163
163
#[ macro_export]
164
164
#[ stable( feature = "eprint" , since = "1.19.0" ) ]
165
165
#[ cfg_attr( not( test) , rustc_diagnostic_item = "eprintln_macro" ) ]
166
- #[ allow_internal_unstable( print_internals, format_args_ln ) ]
166
+ #[ allow_internal_unstable( print_internals) ]
167
167
macro_rules! eprintln {
168
168
( ) => {
169
169
$crate:: eprint!( "\n " )
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
// check-pass
2
2
3
3
#![ allow( non_upper_case_globals) ]
4
- #![ feature( format_args_ln) ]
5
4
6
5
static arg0: ( ) = ( ) ;
7
6
You can’t perform that action at this time.
0 commit comments