blob: 73ceec6803a9014a96d7599221bfdd4db33ad2d8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
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
|