You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error[E0412]: cannot find type `Missing` in this scope
2
+
--> $DIR/unknown_dst_field.rs:18:27
3
+
|
4
+
LL | #[repr(C)] struct Dst(Missing);
5
+
| ^^^^^^^ not found in this scope
6
+
7
+
error[E0412]: cannot find type `Missing` in this scope
8
+
--> $DIR/unknown_dst_field.rs:24:36
9
+
|
10
+
LL | #[repr(C)] struct Dst(&'static Missing);
11
+
| ^^^^^^^ not found in this scope
12
+
13
+
error[E0277]: `should_gracefully_handle_unknown_dst_field::Src` cannot be safely transmuted into `should_gracefully_handle_unknown_dst_field::Dst`
14
+
--> $DIR/unknown_dst_field.rs:19:36
15
+
|
16
+
LL | assert::is_transmutable::<Src, Dst>();
17
+
| ^^^ `should_gracefully_handle_unknown_dst_field::Dst` has an unknown layout
18
+
|
19
+
note: required by a bound in `is_transmutable`
20
+
--> $DIR/unknown_dst_field.rs:12:14
21
+
|
22
+
LL | pub fn is_transmutable<Src, Dst>()
23
+
| --------------- required by a bound in this function
24
+
LL | where
25
+
LL | Dst: BikeshedIntrinsicFrom<Src>
26
+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `is_transmutable`
27
+
28
+
error[E0277]: `should_gracefully_handle_unknown_dst_ref_field::Src` cannot be safely transmuted into `should_gracefully_handle_unknown_dst_ref_field::Dst`
29
+
--> $DIR/unknown_dst_field.rs:25:36
30
+
|
31
+
LL | assert::is_transmutable::<Src, Dst>();
32
+
| ^^^ `should_gracefully_handle_unknown_dst_ref_field::Dst` has an unknown layout
33
+
|
34
+
note: required by a bound in `is_transmutable`
35
+
--> $DIR/unknown_dst_field.rs:12:14
36
+
|
37
+
LL | pub fn is_transmutable<Src, Dst>()
38
+
| --------------- required by a bound in this function
39
+
LL | where
40
+
LL | Dst: BikeshedIntrinsicFrom<Src>
41
+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `is_transmutable`
42
+
43
+
error: aborting due to 4 previous errors
44
+
45
+
Some errors have detailed explanations: E0277, E0412.
46
+
For more information about an error, try `rustc --explain E0277`.
error[E0412]: cannot find type `Missing` in this scope
2
-
--> $DIR/unknown_src_field.rs:18:27
2
+
--> $DIR/unknown_src_field.rs:17:27
3
3
|
4
-
LL | #[repr(C)] struct Dst(Missing);
4
+
LL | #[repr(C)] struct Src(Missing);
5
5
| ^^^^^^^ not found in this scope
6
6
7
-
error[E0277]: `Src` cannot be safely transmuted into `Dst`
7
+
error[E0412]: cannot find type `Missing` in this scope
8
+
--> $DIR/unknown_src_field.rs:23:36
9
+
|
10
+
LL | #[repr(C)] struct Src(&'static Missing);
11
+
| ^^^^^^^ not found in this scope
12
+
13
+
error[E0277]: `should_gracefully_handle_unknown_src_field::Src` cannot be safely transmuted into `should_gracefully_handle_unknown_src_field::Dst`
8
14
--> $DIR/unknown_src_field.rs:19:36
9
15
|
10
16
LL | assert::is_transmutable::<Src, Dst>();
11
-
| ^^^ analyzing the transmutability of `Dst` is not yet supported
17
+
| ^^^ `should_gracefully_handle_unknown_src_field::Src` has an unknown layout
18
+
|
19
+
note: required by a bound in `is_transmutable`
20
+
--> $DIR/unknown_src_field.rs:12:14
21
+
|
22
+
LL | pub fn is_transmutable<Src, Dst>()
23
+
| --------------- required by a bound in this function
24
+
LL | where
25
+
LL | Dst: BikeshedIntrinsicFrom<Src>
26
+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `is_transmutable`
27
+
28
+
error[E0277]: `should_gracefully_handle_unknown_src_ref_field::Src` cannot be safely transmuted into `should_gracefully_handle_unknown_src_ref_field::Dst`
29
+
--> $DIR/unknown_src_field.rs:25:36
30
+
|
31
+
LL | assert::is_transmutable::<Src, Dst>();
32
+
| ^^^ `should_gracefully_handle_unknown_src_ref_field::Src` has an unknown layout
12
33
|
13
34
note: required by a bound in `is_transmutable`
14
35
--> $DIR/unknown_src_field.rs:12:14
@@ -19,7 +40,7 @@ LL | where
19
40
LL | Dst: BikeshedIntrinsicFrom<Src>
20
41
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `is_transmutable`
21
42
22
-
error: aborting due to 2 previous errors
43
+
error: aborting due to 4 previous errors
23
44
24
45
Some errors have detailed explanations: E0277, E0412.
25
46
For more information about an error, try `rustc --explain E0277`.
0 commit comments