2018-08-08 12:28:26 +00:00
|
|
|
error[E0434]: can't capture dynamic environment in a fn item
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/bad-env-capture3.rs:4:31
|
2018-08-08 12:28:26 +00: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 15:56:47 +00:00
|
|
|
--> $DIR/bad-env-capture3.rs:4:24
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | fn bar() { log(debug, x); }
|
|
|
|
| ^^^^^ not found in this scope
|
|
|
|
|
2022-10-05 05:35:34 +00:00
|
|
|
error[E0425]: cannot find function `log` in this scope
|
|
|
|
--> $DIR/bad-env-capture3.rs:4:20
|
|
|
|
|
|
|
|
|
LL | fn bar() { log(debug, x); }
|
|
|
|
| ^^^ not found in this scope
|
|
|
|
|
2018-08-08 12:28:26 +00:00
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
2019-04-17 17:26:38 +00:00
|
|
|
Some errors have detailed explanations: E0425, E0434.
|
2018-08-08 12:28:26 +00:00
|
|
|
For more information about an error, try `rustc --explain E0425`.
|