about summary refs log tree commit diff
path: root/src/test/ui/parser/circular_modules_main.rs
blob: b85003bf0910f61a39e06c28b031822e29c59a65 (plain)
1
2
3
4
5
6
7
8
9
10
#[path = "circular_modules_hello.rs"]
mod circular_modules_hello; //~ ERROR: circular modules

pub fn hi_str() -> String {
    "Hi!".to_string()
}

fn main() {
    circular_modules_hello::say_hello();
}