@@ -31,6 +31,7 @@ macro_rules! panic {
31
31
/// ```
32
32
#[ macro_export]
33
33
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
34
+ #[ cfg_attr( not( test) , rustc_diagnostic_item = "assert_eq_macro" ) ]
34
35
#[ allow_internal_unstable( core_panic) ]
35
36
macro_rules! assert_eq {
36
37
( $left: expr, $right: expr $( , ) ?) => ( {
@@ -80,6 +81,7 @@ macro_rules! assert_eq {
80
81
/// ```
81
82
#[ macro_export]
82
83
#[ stable( feature = "assert_ne" , since = "1.13.0" ) ]
84
+ #[ cfg_attr( not( test) , rustc_diagnostic_item = "assert_ne_macro" ) ]
83
85
#[ allow_internal_unstable( core_panic) ]
84
86
macro_rules! assert_ne {
85
87
( $left: expr, $right: expr $( , ) ?) => ( {
@@ -236,6 +238,7 @@ macro_rules! debug_assert {
236
238
/// ```
237
239
#[ macro_export]
238
240
#[ stable ( feature = "rust1" , since = "1.0.0" ) ]
241
+ #[ cfg_attr ( not ( test) , rustc_diagnostic_item = "debug_assert_eq_macro" ) ]
239
242
macro_rules! debug_assert_eq {
240
243
( $( $arg: tt) * ) => ( if $crate:: cfg!( debug_assertions) { $crate:: assert_eq!( $( $arg) * ) ; } )
241
244
}
@@ -261,6 +264,7 @@ macro_rules! debug_assert_eq {
261
264
/// ```
262
265
#[ macro_export]
263
266
#[ stable( feature = "assert_ne" , since = "1.13.0" ) ]
267
+ #[ cfg_attr( not( test) , rustc_diagnostic_item = "debug_assert_ne_macro" ) ]
264
268
macro_rules! debug_assert_ne {
265
269
( $( $arg: tt) * ) => ( if $crate :: cfg!( debug_assertions) { $crate :: assert_ne!( $( $arg) * ) ; } )
266
270
}
@@ -320,6 +324,7 @@ pub macro debug_assert_matches($($arg:tt)*) {
320
324
/// ```
321
325
#[ macro_export]
322
326
#[ stable( feature = "matches_macro" , since = "1.42.0" ) ]
327
+ #[ cfg_attr( not( test) , rustc_diagnostic_item = "matches_macro" ) ]
323
328
macro_rules! matches {
324
329
( $expression: expr, $( |) ? $( $pattern: pat_param ) |+ $( if $guard: expr ) ? $( , ) ?) => {
325
330
match $expression {
@@ -475,6 +480,7 @@ macro_rules! r#try {
475
480
/// ```
476
481
#[ macro_export]
477
482
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
483
+ #[ cfg_attr( not( test) , rustc_diagnostic_item = "write_macro" ) ]
478
484
macro_rules! write {
479
485
( $dst: expr, $( $arg: tt) * ) => ( $dst. write_fmt( $crate :: format_args!( $( $arg) * ) ) )
480
486
}
@@ -525,6 +531,7 @@ macro_rules! write {
525
531
/// ```
526
532
#[ macro_export]
527
533
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
534
+ #[ cfg_attr( not( test) , rustc_diagnostic_item = "writeln_macro" ) ]
528
535
#[ allow_internal_unstable( format_args_nl) ]
529
536
macro_rules! writeln {
530
537
( $dst: expr $( , ) ?) => (
@@ -589,6 +596,7 @@ macro_rules! writeln {
589
596
/// ```
590
597
#[ macro_export]
591
598
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
599
+ #[ cfg_attr( not( test) , rustc_diagnostic_item = "unreachable_macro" ) ]
592
600
#[ allow_internal_unstable( core_panic) ]
593
601
macro_rules! unreachable {
594
602
( ) => ( {
@@ -675,6 +683,7 @@ macro_rules! unreachable {
675
683
/// ```
676
684
#[ macro_export]
677
685
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
686
+ #[ cfg_attr( not( test) , rustc_diagnostic_item = "unimplemented_macro" ) ]
678
687
#[ allow_internal_unstable( core_panic) ]
679
688
macro_rules! unimplemented {
680
689
( ) => ( $crate :: panicking:: panic( "not implemented" ) ) ;
@@ -737,6 +746,7 @@ macro_rules! unimplemented {
737
746
/// ```
738
747
#[ macro_export]
739
748
#[ stable( feature = "todo_macro" , since = "1.40.0" ) ]
749
+ #[ cfg_attr( not( test) , rustc_diagnostic_item = "todo_macro" ) ]
740
750
#[ allow_internal_unstable( core_panic) ]
741
751
macro_rules! todo {
742
752
( ) => ( $crate :: panicking:: panic( "not yet implemented" ) ) ;
@@ -786,6 +796,7 @@ pub(crate) mod builtin {
786
796
#[ stable( feature = "compile_error_macro" , since = "1.20.0" ) ]
787
797
#[ rustc_builtin_macro]
788
798
#[ macro_export]
799
+ #[ cfg_attr( not( test) , rustc_diagnostic_item = "compile_error_macro" ) ]
789
800
macro_rules! compile_error {
790
801
( $msg: expr $( , ) ?) => { { /* compiler built-in */ } } ;
791
802
}
@@ -835,6 +846,7 @@ pub(crate) mod builtin {
835
846
/// assert_eq!(s, format!("hello {}", "world"));
836
847
/// ```
837
848
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
849
+ #[ cfg_attr( not( test) , rustc_diagnostic_item = "format_args_macro" ) ]
838
850
#[ allow_internal_unsafe]
839
851
#[ allow_internal_unstable( fmt_internals) ]
840
852
#[ rustc_builtin_macro]
@@ -905,6 +917,7 @@ pub(crate) mod builtin {
905
917
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
906
918
#[ rustc_builtin_macro]
907
919
#[ macro_export]
920
+ #[ cfg_attr( not( test) , rustc_diagnostic_item = "env_macro" ) ]
908
921
macro_rules! env {
909
922
( $name: expr $( , ) ?) => { { /* compiler built-in */ } } ;
910
923
( $name: expr, $error_msg: expr $( , ) ?) => { { /* compiler built-in */ } } ;
@@ -930,6 +943,7 @@ pub(crate) mod builtin {
930
943
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
931
944
#[ rustc_builtin_macro]
932
945
#[ macro_export]
946
+ #[ cfg_attr( not( test) , rustc_diagnostic_item = "option_env_macro" ) ]
933
947
macro_rules! option_env {
934
948
( $name: expr $( , ) ?) => { { /* compiler built-in */ } } ;
935
949
}
@@ -1015,6 +1029,7 @@ pub(crate) mod builtin {
1015
1029
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1016
1030
#[ rustc_builtin_macro]
1017
1031
#[ macro_export]
1032
+ #[ cfg_attr( not( test) , rustc_diagnostic_item = "concat_macro" ) ]
1018
1033
macro_rules! concat {
1019
1034
( $( $e: expr) , * $( , ) ?) => { { /* compiler built-in */ } } ;
1020
1035
}
@@ -1040,6 +1055,7 @@ pub(crate) mod builtin {
1040
1055
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1041
1056
#[ rustc_builtin_macro]
1042
1057
#[ macro_export]
1058
+ #[ cfg_attr( not( test) , rustc_diagnostic_item = "line_macro" ) ]
1043
1059
macro_rules! line {
1044
1060
( ) => {
1045
1061
/* compiler built-in */
@@ -1079,6 +1095,7 @@ pub(crate) mod builtin {
1079
1095
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1080
1096
#[ rustc_builtin_macro]
1081
1097
#[ macro_export]
1098
+ #[ cfg_attr( not( test) , rustc_diagnostic_item = "column_macro" ) ]
1082
1099
macro_rules! column {
1083
1100
( ) => {
1084
1101
/* compiler built-in */
@@ -1104,6 +1121,7 @@ pub(crate) mod builtin {
1104
1121
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1105
1122
#[ rustc_builtin_macro]
1106
1123
#[ macro_export]
1124
+ #[ cfg_attr( not( test) , rustc_diagnostic_item = "file_macro" ) ]
1107
1125
macro_rules! file {
1108
1126
( ) => {
1109
1127
/* compiler built-in */
@@ -1128,6 +1146,7 @@ pub(crate) mod builtin {
1128
1146
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1129
1147
#[ rustc_builtin_macro]
1130
1148
#[ macro_export]
1149
+ #[ cfg_attr( not( test) , rustc_diagnostic_item = "stringify_macro" ) ]
1131
1150
macro_rules! stringify {
1132
1151
( $( $t: tt) * ) => {
1133
1152
/* compiler built-in */
@@ -1169,6 +1188,7 @@ pub(crate) mod builtin {
1169
1188
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1170
1189
#[ rustc_builtin_macro]
1171
1190
#[ macro_export]
1191
+ #[ cfg_attr( not( test) , rustc_diagnostic_item = "include_str_macro" ) ]
1172
1192
macro_rules! include_str {
1173
1193
( $file: expr $( , ) ?) => { { /* compiler built-in */ } } ;
1174
1194
}
@@ -1208,6 +1228,7 @@ pub(crate) mod builtin {
1208
1228
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1209
1229
#[ rustc_builtin_macro]
1210
1230
#[ macro_export]
1231
+ #[ cfg_attr( not( test) , rustc_diagnostic_item = "include_bytes_macro" ) ]
1211
1232
macro_rules! include_bytes {
1212
1233
( $file: expr $( , ) ?) => { { /* compiler built-in */ } } ;
1213
1234
}
@@ -1232,6 +1253,7 @@ pub(crate) mod builtin {
1232
1253
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1233
1254
#[ rustc_builtin_macro]
1234
1255
#[ macro_export]
1256
+ #[ cfg_attr( not( test) , rustc_diagnostic_item = "module_path_macro" ) ]
1235
1257
macro_rules! module_path {
1236
1258
( ) => {
1237
1259
/* compiler built-in */
@@ -1265,6 +1287,7 @@ pub(crate) mod builtin {
1265
1287
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1266
1288
#[ rustc_builtin_macro]
1267
1289
#[ macro_export]
1290
+ #[ cfg_attr( not( test) , rustc_diagnostic_item = "cfg_macro" ) ]
1268
1291
macro_rules! cfg {
1269
1292
( $( $cfg: tt) * ) => {
1270
1293
/* compiler built-in */
@@ -1315,6 +1338,7 @@ pub(crate) mod builtin {
1315
1338
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1316
1339
#[ rustc_builtin_macro]
1317
1340
#[ macro_export]
1341
+ #[ cfg_attr( not( test) , rustc_diagnostic_item = "include_macro" ) ]
1318
1342
macro_rules! include {
1319
1343
( $file: expr $( , ) ?) => { { /* compiler built-in */ } } ;
1320
1344
}
0 commit comments