]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/circular_modules_main.rs
Remove "here" from "expected one of X here"
[rust.git] / src / test / ui / parser / circular_modules_main.rs
1 #[path = "circular_modules_hello.rs"]
2 mod circular_modules_hello; //~ ERROR: circular modules
3
4 pub fn hi_str() -> String {
5     "Hi!".to_string()
6 }
7
8 fn main() {
9     circular_modules_hello::say_hello();
10 }