Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-9110.rs
blob: 9aeda7d5b1b907ea0bd4f541577829e5889a6bcc [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
#![
allow
(
dead_code
)]
//@ pretty-expanded FIXME #23616
#![
allow
(
non_snake_case
)]
macro_rules
!
silly_macro
{
()
=>
(
pub
mod
Qux
{
pub
struct
Foo
{
x
:
u8
}
pub
fn
bar
(
_foo
:
Foo
)
{}
}
);
}
silly_macro
!();
pub
fn
main
()
{}