rust/tests/ui/resolve/bad-env-capture.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
759 B
Plaintext
Raw Normal View History

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
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
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`.