mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
34 lines
632 B
Rust
34 lines
632 B
Rust
//@ revisions: deny allow
|
|
//@[allow] check-pass
|
|
|
|
#![cfg_attr(deny, deny(invalid_macro_export_arguments))]
|
|
#![cfg_attr(allow, allow(invalid_macro_export_arguments))]
|
|
|
|
#[macro_export(hello, world)]
|
|
//[deny]~^ ERROR `#[macro_export]` can only take 1 or 0 arguments
|
|
macro_rules! a {
|
|
() => ()
|
|
}
|
|
|
|
#[macro_export(not_local_inner_macros)]
|
|
//[deny]~^ ERROR `not_local_inner_macros` isn't a valid `#[macro_export]` argument
|
|
macro_rules! b {
|
|
() => ()
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! c {
|
|
() => ()
|
|
}
|
|
#[macro_export(local_inner_macros)]
|
|
macro_rules! d {
|
|
() => ()
|
|
}
|
|
|
|
#[macro_export()]
|
|
macro_rules! e {
|
|
() => ()
|
|
}
|
|
|
|
fn main() {}
|