rust/tests/ui/borrowck/borrowck-uninit.stderr

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

52 lines
1.7 KiB
Plaintext
Raw Permalink Normal View History

2022-06-21 22:54:17 +00:00
error[E0381]: used binding `x` isn't initialized
2018-12-25 15:56:47 +00:00
--> $DIR/borrowck-uninit.rs:5:9
2018-08-08 12:28:26 +00:00
|
LL | let x: isize;
2022-06-21 22:54:17 +00:00
| - binding declared here but left uninitialized
2019-03-09 12:03:44 +00:00
LL | foo(x);
| ^ `x` used here but it isn't initialized
|
help: consider assigning a value
|
2024-04-10 20:01:20 +00:00
LL | let x: isize = 42;
| ++++
2018-08-08 12:28:26 +00:00
error[E0381]: used binding `a` isn't initialized
--> $DIR/borrowck-uninit.rs:14:32
|
LL | let (a, );
| - binding declared here but left uninitialized
...
LL | let _: (u8, u8, u8, u8) = (a, b, c, d);
| ^ `a` used here but it isn't initialized
error[E0381]: used binding `b` isn't initialized
--> $DIR/borrowck-uninit.rs:14:35
|
LL | let [b, ];
| - binding declared here but left uninitialized
...
LL | let _: (u8, u8, u8, u8) = (a, b, c, d);
| ^ `b` used here but it isn't initialized
error[E0381]: used binding `c` isn't initialized
--> $DIR/borrowck-uninit.rs:14:38
|
LL | let A(c);
| - binding declared here but left uninitialized
LL | let B { d };
LL | let _: (u8, u8, u8, u8) = (a, b, c, d);
| ^ `c` used here but it isn't initialized
error[E0381]: used binding `d` isn't initialized
--> $DIR/borrowck-uninit.rs:14:41
|
LL | let B { d };
| - binding declared here but left uninitialized
LL | let _: (u8, u8, u8, u8) = (a, b, c, d);
| ^ `d` used here but it isn't initialized
error: aborting due to 5 previous errors
2018-08-08 12:28:26 +00:00
For more information about this error, try `rustc --explain E0381`.