blob: b85003bf0910f61a39e06c28b031822e29c59a65 [file] [log] [blame]
#[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();
}