mirror of
https://gcc.gnu.org/git/gcc.git
synced 2026-02-22 12:00:03 -05:00
gccrs: attributes: Add #[macro_use] as builtin
gcc/rust/ChangeLog: * util/rust-attributes.cc: Add `macro_use` to list of builtin attributes. gcc/testsuite/ChangeLog: * rust/compile/macro_export_1.rs: New test.
This commit is contained in:
@@ -40,6 +40,7 @@ static const BuiltinAttrDefinition __definitions[]
|
||||
{"no_mangle", CODE_GENERATION},
|
||||
{"repr", CODE_GENERATION},
|
||||
{"path", EXPANSION},
|
||||
{"macro_use", NAME_RESOLUTION},
|
||||
// From now on, these are reserved by the compiler and gated through
|
||||
// #![feature(rustc_attrs)]
|
||||
{"rustc_inherit_overflow_checks", CODE_GENERATION}};
|
||||
|
||||
2
gcc/testsuite/rust/compile/macro_export_1.rs
Normal file
2
gcc/testsuite/rust/compile/macro_export_1.rs
Normal file
@@ -0,0 +1,2 @@
|
||||
#[macro_use]
|
||||
mod foo {}
|
||||
Reference in New Issue
Block a user