blob: 8f5440d33397485e3914b7114f812b2c1c4c96f8 (
plain)
| 1
2
3
4
5
6
7
8
9
10
 | fn foo(x: isize) {
    fn mth() {
        fn bar() { log(debug, x); }
        //~^ ERROR can't capture dynamic environment in a fn item
        //~| ERROR cannot find value `debug` in this scope
        //~| ERROR cannot find function `log` in this scope
    }
}
fn main() { foo(2); }
 |