]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/circular_modules_hello.rs
Merge commit '40dd3e2b7089b5e96714e064b731f6dbf17c61a9' into sync_cg_clif-2021-05-27
[rust.git] / src / test / ui / parser / circular_modules_hello.rs
1 // ignore-test: this is an auxiliary file for circular-modules-main.rs
2
3 #[path = "circular_modules_main.rs"]
4 mod circular_modules_main;
5
6 pub fn say_hello() {
7     println!("{}", circular_modules_main::hi_str());
8 }