Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
17 lines
254 B
Rust
17 lines
254 B
Rust
//@ check-pass
|
|
#![allow(dead_code)]
|
|
#![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() {}
|