]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/borrowck-break-uninit.stderr
Rollup merge of #102270 - Nilstrieb:delete-useless-benches, r=TaKO8Ki
[rust.git] / src / test / ui / borrowck / borrowck-break-uninit.stderr
1 error[E0381]: used binding `x` isn't initialized
2   --> $DIR/borrowck-break-uninit.rs:9:20
3    |
4 LL |     let x: isize;
5    |         - binding declared here but left uninitialized
6 ...
7 LL |     println!("{}", x);
8    |                    ^ `x` used here but it isn't initialized
9    |
10    = note: this error originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info)
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0381`.