2011-01-25 17:15:19 -06:00
|
|
|
mod m1 {
|
2015-06-07 19:56:18 -05:00
|
|
|
pub mod arguments {}
|
2011-01-25 17:15:19 -06:00
|
|
|
}
|
|
|
|
|
2020-01-04 18:17:46 -06:00
|
|
|
fn main(arguments: Vec<String>) { //~ ERROR `main` function has wrong type
|
2015-06-07 19:56:18 -05:00
|
|
|
log(debug, m1::arguments);
|
2017-01-11 16:18:08 -06:00
|
|
|
//~^ ERROR cannot find function `log` in this scope
|
|
|
|
//~| ERROR cannot find value `debug` in this scope
|
2016-11-30 16:35:25 -06:00
|
|
|
//~| ERROR expected value, found module `m1::arguments`
|
2014-03-05 17:28:08 -06:00
|
|
|
}
|