2018-08-08 07:28:26 -05:00
|
|
|
error[E0434]: can't capture dynamic environment in a fn item
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/bad-env-capture.rs:4:27
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | fn bar() { log(debug, x); }
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= help: use the `|| { ... }` closure form instead
|
|
|
|
|
|
|
|
error[E0425]: cannot find value `debug` in this scope
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/bad-env-capture.rs:4:20
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | fn bar() { log(debug, x); }
|
|
|
|
| ^^^^^ not found in this scope
|
|
|
|
|
2022-10-05 00:35:34 -05:00
|
|
|
error[E0425]: cannot find function `log` in this scope
|
|
|
|
--> $DIR/bad-env-capture.rs:4:16
|
|
|
|
|
|
|
|
|
LL | fn bar() { log(debug, x); }
|
|
|
|
| ^^^ not found in this scope
|
|
|
|
|
2018-08-08 07:28:26 -05:00
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
2019-04-17 12:26:38 -05:00
|
|
|
Some errors have detailed explanations: E0425, E0434.
|
2018-08-08 07:28:26 -05:00
|
|
|
For more information about an error, try `rustc --explain E0425`.
|