diff options
Diffstat (limited to 'tests/ui/uninhabited/privately-uninhabited-mir-call.stderr')
-rw-r--r-- | tests/ui/uninhabited/privately-uninhabited-mir-call.stderr | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/ui/uninhabited/privately-uninhabited-mir-call.stderr b/tests/ui/uninhabited/privately-uninhabited-mir-call.stderr new file mode 100644 index 000000000..0dfd22a30 --- /dev/null +++ b/tests/ui/uninhabited/privately-uninhabited-mir-call.stderr @@ -0,0 +1,17 @@ +error[E0381]: used binding `y` isn't initialized + --> $DIR/privately-uninhabited-mir-call.rs:28:5 + | +LL | let y: &mut u32; + | - binding declared here but left uninitialized +... +LL | *y = 2; + | ^^^^^^ `y` used here but it isn't initialized + | +help: consider assigning a value + | +LL | let y: &mut u32 = todo!(); + | +++++++++ + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0381`. |