2024-02-16 20:02:50 +00:00
|
|
|
//@ error-pattern: circular modules
|
2021-02-21 19:15:43 +03:00
|
|
|
|
2014-05-16 14:23:04 -07:00
|
|
|
#[path = "circular_modules_hello.rs"]
|
2021-02-21 19:15:43 +03:00
|
|
|
mod circular_modules_hello;
|
2013-07-04 19:51:11 +02:00
|
|
|
|
2014-05-22 16:57:53 -07:00
|
|
|
pub fn hi_str() -> String {
|
2015-02-26 21:00:43 -08:00
|
|
|
"Hi!".to_string()
|
2013-07-04 19:51:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2021-02-21 19:15:43 +03:00
|
|
|
circular_modules_hello::say_hello();
|
2013-07-04 19:51:11 +02:00
|
|
|
}
|