]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/macro-use-one.rs
Rollup merge of #106244 - atouchet:readme3, r=workingjubilee
[rust.git] / tests / ui / macros / macro-use-one.rs
1 // run-pass
2 // aux-build:two_macros.rs
3
4 #[macro_use(macro_two)]
5 extern crate two_macros;
6
7 pub fn main() {
8     macro_two!();
9 }