]> git.lizzy.rs Git - rust.git/blob - tests/ui/definition-reachable/private-use.rs
Rollup merge of #103236 - tspiteri:redoc-int-adc-sbb, r=m-ou-se
[rust.git] / tests / ui / definition-reachable / private-use.rs
1 // Check that private use statements can be used by
2
3 // run-pass
4 // aux-build:private-use-macro.rs
5
6 extern crate private_use_macro;
7
8 fn main() {
9     assert_eq!(private_use_macro::m!(), 57);
10 }