blob: 73ceec6803a9014a96d7599221bfdd4db33ad2d8 [file] [log] [blame]
mod foo {
pub fn x(y: isize) { log(debug, y); }
//~^ ERROR cannot find function `log` in this scope
//~| ERROR cannot find value `debug` in this scope
fn z(y: isize) { log(debug, y); }
//~^ ERROR cannot find function `log` in this scope
//~| ERROR cannot find value `debug` in this scope
}
fn main() { foo::z(10); } //~ ERROR function `z` is private