2014-05-16 14:23:04 -07:00
|
|
|
#[path = "circular_modules_hello.rs"]
|
2015-02-26 21:00:43 -08:00
|
|
|
mod circular_modules_hello; //~ ERROR: circular modules
|
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() {
|
|
|
|
circular_modules_hello::say_hello();
|
|
|
|
}
|