rust/src/test/ui/issue-24267-flow-exit.nll.stderr
2018-07-15 17:10:52 -07:00

16 lines
612 B
Plaintext

error[E0381]: borrow of possibly uninitialized variable: `x`
--> $DIR/issue-24267-flow-exit.rs:22:20
|
LL | println!("{}", x); //~ ERROR use of possibly uninitialized variable: `x`
| ^ use of possibly uninitialized `x`
error[E0381]: borrow of possibly uninitialized variable: `x`
--> $DIR/issue-24267-flow-exit.rs:28:20
|
LL | println!("{}", x); //~ ERROR use of possibly uninitialized variable: `x`
| ^ use of possibly uninitialized `x`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0381`.