@@ -277,25 +277,35 @@ pub const BUILTIN_ATTRIBUTES: &[BuiltinAttribute] = &[
277
277
ungated ! ( cfg_attr, Normal , template!( List : "predicate, attr1, attr2, ..." ) , DuplicatesOk ) ,
278
278
279
279
// Testing:
280
- ungated ! ( ignore, Normal , template!( Word , NameValueStr : "reason" ) , WarnFollowing ) ,
280
+ ungated ! (
281
+ ignore, Normal , template!( Word , NameValueStr : "reason" ) , WarnFollowing ,
282
+ @only_local: true ,
283
+ ) ,
281
284
ungated ! (
282
285
should_panic, Normal ,
283
286
template!( Word , List : r#"expected = "reason""# , NameValueStr : "reason" ) , FutureWarnFollowing ,
287
+ @only_local: true ,
284
288
) ,
285
289
// FIXME(Centril): This can be used on stable but shouldn't.
286
- ungated ! ( reexport_test_harness_main, CrateLevel , template!( NameValueStr : "name" ) , ErrorFollowing ) ,
290
+ ungated ! (
291
+ reexport_test_harness_main, CrateLevel , template!( NameValueStr : "name" ) , ErrorFollowing ,
292
+ @only_local: true ,
293
+ ) ,
287
294
288
295
// Macros:
289
296
ungated ! ( automatically_derived, Normal , template!( Word ) , WarnFollowing ) ,
290
- ungated ! ( macro_use, Normal , template!( Word , List : "name1, name2, ..." ) , WarnFollowingWordOnly ) ,
291
- ungated ! ( macro_escape, Normal , template!( Word ) , WarnFollowing ) , // Deprecated synonym for `macro_use`.
297
+ ungated ! (
298
+ macro_use, Normal , template!( Word , List : "name1, name2, ..." ) , WarnFollowingWordOnly ,
299
+ @only_local: true ,
300
+ ) ,
301
+ ungated ! ( macro_escape, Normal , template!( Word ) , WarnFollowing , @only_local: true ) , // Deprecated synonym for `macro_use`.
292
302
ungated ! ( macro_export, Normal , template!( Word , List : "local_inner_macros" ) , WarnFollowing ) ,
293
- ungated ! ( proc_macro, Normal , template!( Word ) , ErrorFollowing ) ,
303
+ ungated ! ( proc_macro, Normal , template!( Word ) , ErrorFollowing , @only_local : true ) ,
294
304
ungated ! (
295
- proc_macro_derive, Normal ,
296
- template! ( List : "TraitName, /*opt*/ attributes(name1, name2, ...)" ) , ErrorFollowing ,
305
+ proc_macro_derive, Normal , template! ( List : "TraitName, /*opt*/ attributes(name1, name2, ...)" ) ,
306
+ ErrorFollowing , @only_local : true ,
297
307
) ,
298
- ungated ! ( proc_macro_attribute, Normal , template!( Word ) , ErrorFollowing ) ,
308
+ ungated ! ( proc_macro_attribute, Normal , template!( Word ) , ErrorFollowing , @only_local : true ) ,
299
309
300
310
// Lints:
301
311
ungated ! (
@@ -308,7 +318,7 @@ pub const BUILTIN_ATTRIBUTES: &[BuiltinAttribute] = &[
308
318
) ,
309
319
gated ! (
310
320
expect, Normal , template!( List : r#"lint1, lint2, ..., /*opt*/ reason = "...""# ) , DuplicatesOk ,
311
- lint_reasons, experimental!( expect)
321
+ @only_local : true , lint_reasons, experimental!( expect)
312
322
) ,
313
323
ungated ! (
314
324
forbid, Normal , template!( List : r#"lint1, lint2, ..., /*opt*/ reason = "...""# ) ,
@@ -334,32 +344,48 @@ pub const BUILTIN_ATTRIBUTES: &[BuiltinAttribute] = &[
334
344
) ,
335
345
336
346
// Crate properties:
337
- ungated ! ( crate_name, CrateLevel , template!( NameValueStr : "name" ) , FutureWarnFollowing ) ,
338
- ungated ! ( crate_type, CrateLevel , template!( NameValueStr : "bin|lib|..." ) , DuplicatesOk ) ,
347
+ ungated ! (
348
+ crate_name, CrateLevel , template!( NameValueStr : "name" ) , FutureWarnFollowing ,
349
+ @only_local: true ,
350
+ ) ,
351
+ ungated ! (
352
+ crate_type, CrateLevel , template!( NameValueStr : "bin|lib|..." ) , DuplicatesOk ,
353
+ @only_local: true ,
354
+ ) ,
339
355
// crate_id is deprecated
340
- ungated ! ( crate_id, CrateLevel , template!( NameValueStr : "ignored" ) , FutureWarnFollowing ) ,
356
+ ungated ! (
357
+ crate_id, CrateLevel , template!( NameValueStr : "ignored" ) , FutureWarnFollowing ,
358
+ @only_local: true ,
359
+ ) ,
341
360
342
361
// ABI, linking, symbols, and FFI
343
362
ungated ! (
344
363
link, Normal ,
345
364
template!( List : r#"name = "...", /*opt*/ kind = "dylib|static|...", /*opt*/ wasm_import_module = "...", /*opt*/ import_name_type = "decorated|noprefix|undecorated""# ) ,
346
365
DuplicatesOk ,
366
+ @only_local: true ,
347
367
) ,
348
368
ungated ! ( link_name, Normal , template!( NameValueStr : "name" ) , FutureWarnPreceding ) ,
349
- ungated ! ( no_link, Normal , template!( Word ) , WarnFollowing ) ,
369
+ ungated ! ( no_link, Normal , template!( Word ) , WarnFollowing , @only_local : true ) ,
350
370
ungated ! ( repr, Normal , template!( List : "C" ) , DuplicatesOk , @only_local: true ) ,
351
- ungated ! ( export_name, Normal , template!( NameValueStr : "name" ) , FutureWarnPreceding ) ,
352
- ungated ! ( link_section, Normal , template!( NameValueStr : "name" ) , FutureWarnPreceding ) ,
371
+ ungated ! ( export_name, Normal , template!( NameValueStr : "name" ) , FutureWarnPreceding , @only_local : true ) ,
372
+ ungated ! ( link_section, Normal , template!( NameValueStr : "name" ) , FutureWarnPreceding , @only_local : true ) ,
353
373
ungated ! ( no_mangle, Normal , template!( Word ) , WarnFollowing , @only_local: true ) ,
354
374
ungated ! ( used, Normal , template!( Word , List : "compiler|linker" ) , WarnFollowing , @only_local: true ) ,
355
375
ungated ! ( link_ordinal, Normal , template!( List : "ordinal" ) , ErrorPreceding ) ,
356
376
357
377
// Limits:
358
- ungated ! ( recursion_limit, CrateLevel , template!( NameValueStr : "N" ) , FutureWarnFollowing ) ,
359
- ungated ! ( type_length_limit, CrateLevel , template!( NameValueStr : "N" ) , FutureWarnFollowing ) ,
378
+ ungated ! (
379
+ recursion_limit, CrateLevel , template!( NameValueStr : "N" ) , FutureWarnFollowing ,
380
+ @only_local: true
381
+ ) ,
382
+ ungated ! (
383
+ type_length_limit, CrateLevel , template!( NameValueStr : "N" ) , FutureWarnFollowing ,
384
+ @only_local: true
385
+ ) ,
360
386
gated ! (
361
387
move_size_limit, CrateLevel , template!( NameValueStr : "N" ) , ErrorFollowing ,
362
- large_assignments, experimental!( move_size_limit)
388
+ @only_local : true , large_assignments, experimental!( move_size_limit)
363
389
) ,
364
390
365
391
// Entry point:
0 commit comments