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