]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/macro-use-all.rs
Rollup merge of #104505 - WaffleLapkin:no-double-spaces-in-comments, r=jackh726
[rust.git] / tests / ui / macros / macro-use-all.rs
1 // run-pass
2 // aux-build:two_macros.rs
3
4 #[macro_use]
5 extern crate two_macros;
6
7 pub fn main() {
8     macro_one!();
9     macro_two!();
10 }