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

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

25 lines
786 B
Plaintext
Raw Normal View History

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