]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/macro-crate-def-only.rs
Rollup merge of #106783 - WaffleLapkin:break-my-ident, r=wesleywiser
[rust.git] / tests / ui / macros / macro-crate-def-only.rs
1 // run-pass
2 // aux-build:macro_crate_def_only.rs
3
4
5 #[macro_use] #[no_link]
6 extern crate macro_crate_def_only;
7
8 pub fn main() {
9     assert_eq!(5, make_a_5!());
10 }