rust/tests/ui/try-block/try-block-opt-init.stderr

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

18 lines
651 B
Plaintext
Raw Normal View History

2022-06-22 18:04:36 +00:00
error[E0381]: used binding `cfg_res` is possibly-uninitialized
2018-12-25 15:56:47 +00:00
--> $DIR/try-block-opt-init.rs:15:5
|
LL | let cfg_res;
2022-06-21 22:54:17 +00:00
| ------- binding declared here but left uninitialized
...
LL | cfg_res = 5;
| ----------- binding initialized here in some conditions
...
2019-03-09 12:03:44 +00:00
LL | assert_eq!(cfg_res, 5);
2022-06-22 18:04:36 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^ `cfg_res` used here but it is possibly-uninitialized
|
= note: this error originates in the macro `assert_eq` (in Nightly builds, run with -Z macro-backtrace for more info)
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0381`.