mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-30 23:48:20 +00:00
116 lines
4.4 KiB
Plaintext
116 lines
4.4 KiB
Plaintext
error[E0133]: access to union field is unsafe and requires unsafe function or block
|
|
--> $DIR/union-unsafe.rs:36:6
|
|
|
|
|
LL | *(u.p) = 13;
|
|
| ^^^^^ access to union field
|
|
|
|
|
= note: the field may not be properly initialized: using uninitialized data will cause undefined behavior
|
|
|
|
error[E0133]: access to union field is unsafe and requires unsafe function or block
|
|
--> $DIR/union-unsafe.rs:50:26
|
|
|
|
|
LL | let _p = &raw const *(u.p);
|
|
| ^^^^^ access to union field
|
|
|
|
|
= note: the field may not be properly initialized: using uninitialized data will cause undefined behavior
|
|
|
|
error[E0133]: access to union field is unsafe and requires unsafe function or block
|
|
--> $DIR/union-unsafe.rs:62:6
|
|
|
|
|
LL | *u3.a = T::default();
|
|
| ^^^^ access to union field
|
|
|
|
|
= note: the field may not be properly initialized: using uninitialized data will cause undefined behavior
|
|
|
|
error[E0133]: access to union field is unsafe and requires unsafe function or block
|
|
--> $DIR/union-unsafe.rs:68:6
|
|
|
|
|
LL | *u3.a = T::default();
|
|
| ^^^^ access to union field
|
|
|
|
|
= note: the field may not be properly initialized: using uninitialized data will cause undefined behavior
|
|
|
|
error[E0133]: access to union field is unsafe and requires unsafe function or block
|
|
--> $DIR/union-unsafe.rs:76:13
|
|
|
|
|
LL | let a = u1.a;
|
|
| ^^^^ access to union field
|
|
|
|
|
= note: the field may not be properly initialized: using uninitialized data will cause undefined behavior
|
|
|
|
error[E0133]: access to union field is unsafe and requires unsafe function or block
|
|
--> $DIR/union-unsafe.rs:91:29
|
|
|
|
|
LL | let _a = &raw const vec[u4.a];
|
|
| ^^^^ access to union field
|
|
|
|
|
= note: the field may not be properly initialized: using uninitialized data will cause undefined behavior
|
|
|
|
error[E0133]: access to union field is unsafe and requires unsafe function or block
|
|
--> $DIR/union-unsafe.rs:93:14
|
|
|
|
|
LL | let U1 { a } = u1;
|
|
| ^ access to union field
|
|
|
|
|
= note: the field may not be properly initialized: using uninitialized data will cause undefined behavior
|
|
|
|
error[E0133]: access to union field is unsafe and requires unsafe function or block
|
|
--> $DIR/union-unsafe.rs:94:20
|
|
|
|
|
LL | if let U1 { a: 12 } = u1 {}
|
|
| ^^ access to union field
|
|
|
|
|
= note: the field may not be properly initialized: using uninitialized data will cause undefined behavior
|
|
|
|
error[E0133]: access to union field is unsafe and requires unsafe function or block
|
|
--> $DIR/union-unsafe.rs:95:25
|
|
|
|
|
LL | if let Some(U1 { a: 13 }) = Some(u1) {}
|
|
| ^^ access to union field
|
|
|
|
|
= note: the field may not be properly initialized: using uninitialized data will cause undefined behavior
|
|
|
|
error[E0133]: access to union field is unsafe and requires unsafe function or block
|
|
--> $DIR/union-unsafe.rs:100:6
|
|
|
|
|
LL | *u2.a = String::from("new");
|
|
| ^^^^ access to union field
|
|
|
|
|
= note: the field may not be properly initialized: using uninitialized data will cause undefined behavior
|
|
|
|
error[E0133]: access to union field is unsafe and requires unsafe function or block
|
|
--> $DIR/union-unsafe.rs:104:6
|
|
|
|
|
LL | *u3.a = 1;
|
|
| ^^^^ access to union field
|
|
|
|
|
= note: the field may not be properly initialized: using uninitialized data will cause undefined behavior
|
|
|
|
error[E0133]: access to union field is unsafe and requires unsafe function or block
|
|
--> $DIR/union-unsafe.rs:108:6
|
|
|
|
|
LL | *u3.a = String::from("new");
|
|
| ^^^^ access to union field
|
|
|
|
|
= note: the field may not be properly initialized: using uninitialized data will cause undefined behavior
|
|
|
|
error[E0133]: access to union field is unsafe and requires unsafe function or block
|
|
--> $DIR/union-unsafe.rs:117:28
|
|
|
|
|
LL | let _p = &raw const (**a.b).c;
|
|
| ^^^ access to union field
|
|
|
|
|
= note: the field may not be properly initialized: using uninitialized data will cause undefined behavior
|
|
|
|
error[E0133]: access to union field is unsafe and requires unsafe function or block
|
|
--> $DIR/union-unsafe.rs:148:27
|
|
|
|
|
LL | let _p = &raw const (*a.b).c;
|
|
| ^^^ access to union field
|
|
|
|
|
= note: the field may not be properly initialized: using uninitialized data will cause undefined behavior
|
|
|
|
error: aborting due to 14 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0133`.
|