Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
5f6fa960c254dfda8ba1d5dc2fb281b6908d8005
/
.
/
tests
/
ui
/
issues
/
issue-32782.rs
blob: 1e99a25cec3a5a8d7222e5e072a0ea87eace43c1 [
file
]
macro_rules
!
bar
(
()
=>
()
);
macro_rules
!
foo
(
()
=>
(
#[
allow_internal_unstable
()]
//~^ ERROR allow_internal_unstable side-steps
//~| ERROR `#[allow_internal_unstable]` attribute cannot be used on macro calls
bar
!();
);
);
foo
!();
fn
main
()
{}