blob: 6b51414e5a200a0af06b7ab2b07106c23c81b235 [file] [log] [blame]
error[E0381]: use of possibly uninitialized variable: `**x`
--> $DIR/borrowck-uninit-ref-chain.rs:21:15
|
LL | let _y = &**x; //[ast]~ ERROR use of possibly uninitialized variable: `**x` [E0381]
| ^^^ use of possibly uninitialized `**x`
error[E0381]: use of possibly uninitialized variable: `**x`
--> $DIR/borrowck-uninit-ref-chain.rs:25:15
|
LL | let _y = &**x; //[ast]~ ERROR use of possibly uninitialized variable: `**x` [E0381]
| ^^^ use of possibly uninitialized `**x`
error[E0381]: use of possibly uninitialized variable: `**x`
--> $DIR/borrowck-uninit-ref-chain.rs:29:15
|
LL | let _y = &**x; //[ast]~ ERROR use of possibly uninitialized variable: `**x` [E0381]
| ^^^ use of possibly uninitialized `**x`
error[E0381]: use of possibly uninitialized variable: `a.x`
--> $DIR/borrowck-uninit-ref-chain.rs:35:15
|
LL | let _b = &a.x; //[ast]~ ERROR use of possibly uninitialized variable: `a.x` [E0381]
| ^^^ use of possibly uninitialized `a.x`
error[E0381]: use of possibly uninitialized variable: `**a.x`
--> $DIR/borrowck-uninit-ref-chain.rs:40:15
|
LL | let _b = &**a.x; //[ast]~ ERROR use of possibly uninitialized variable: `**a.x` [E0381]
| ^^^^^ use of possibly uninitialized `**a.x`
error[E0381]: use of possibly uninitialized variable: `a.y`
--> $DIR/borrowck-uninit-ref-chain.rs:46:15
|
LL | let _b = &a.y; //[ast]~ ERROR use of possibly uninitialized variable: `a.y` [E0381]
| ^^^ use of possibly uninitialized `a.y`
error[E0381]: use of possibly uninitialized variable: `**a.y`
--> $DIR/borrowck-uninit-ref-chain.rs:51:15
|
LL | let _b = &**a.y; //[ast]~ ERROR use of possibly uninitialized variable: `**a.y` [E0381]
| ^^^^^ use of possibly uninitialized `**a.y`
error: aborting due to 7 previous errors
For more information about this error, try `rustc --explain E0381`.