forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuninhabited-static.stderr
More file actions
104 lines (93 loc) · 5.07 KB
/
uninhabited-static.stderr
File metadata and controls
104 lines (93 loc) · 5.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
error: static of uninhabited type
--> $DIR/uninhabited-static.rs:11:1
|
LL | static VOID2: Void = unsafe { std::mem::transmute(()) };
| ^^^^^^^^^^^^^^^^^^
|
= note: uninhabited statics cannot be initialized, and any access would be an immediate error
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #74840 <https://github.com/rust-lang/rust/issues/74840>
= note: `#[deny(uninhabited_static)]` (part of `#[deny(future_incompatible)]`) on by default
error: static of uninhabited type
--> $DIR/uninhabited-static.rs:14:1
|
LL | static NEVER2: Void = unsafe { std::mem::transmute(()) };
| ^^^^^^^^^^^^^^^^^^^
|
= note: uninhabited statics cannot be initialized, and any access would be an immediate error
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #74840 <https://github.com/rust-lang/rust/issues/74840>
error: static of uninhabited type
--> $DIR/uninhabited-static.rs:5:5
|
LL | static VOID: Void;
| ^^^^^^^^^^^^^^^^^
|
= note: uninhabited statics cannot be initialized, and any access would be an immediate error
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #74840 <https://github.com/rust-lang/rust/issues/74840>
error: static of uninhabited type
--> $DIR/uninhabited-static.rs:7:5
|
LL | static NEVER: !;
| ^^^^^^^^^^^^^^^
|
= note: uninhabited statics cannot be initialized, and any access would be an immediate error
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #74840 <https://github.com/rust-lang/rust/issues/74840>
error[E0080]: constructing invalid value of type Void: encountered a value of uninhabited type `Void`
--> $DIR/uninhabited-static.rs:11:31
|
LL | static VOID2: Void = unsafe { std::mem::transmute(()) };
| ^^^^^^^^^^^^^^^^^^^^^^^ evaluation of `VOID2` failed here
error[E0080]: constructing invalid value of type Void: encountered a value of uninhabited type `Void`
--> $DIR/uninhabited-static.rs:14:32
|
LL | static NEVER2: Void = unsafe { std::mem::transmute(()) };
| ^^^^^^^^^^^^^^^^^^^^^^^ evaluation of `NEVER2` failed here
error: aborting due to 6 previous errors
For more information about this error, try `rustc --explain E0080`.
Future incompatibility report: Future breakage diagnostic:
error: static of uninhabited type
--> $DIR/uninhabited-static.rs:11:1
|
LL | static VOID2: Void = unsafe { std::mem::transmute(()) };
| ^^^^^^^^^^^^^^^^^^
|
= note: uninhabited statics cannot be initialized, and any access would be an immediate error
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #74840 <https://github.com/rust-lang/rust/issues/74840>
= note: `#[deny(uninhabited_static)]` (part of `#[deny(future_incompatible)]`) on by default
Future breakage diagnostic:
error: static of uninhabited type
--> $DIR/uninhabited-static.rs:14:1
|
LL | static NEVER2: Void = unsafe { std::mem::transmute(()) };
| ^^^^^^^^^^^^^^^^^^^
|
= note: uninhabited statics cannot be initialized, and any access would be an immediate error
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #74840 <https://github.com/rust-lang/rust/issues/74840>
= note: `#[deny(uninhabited_static)]` (part of `#[deny(future_incompatible)]`) on by default
Future breakage diagnostic:
error: static of uninhabited type
--> $DIR/uninhabited-static.rs:5:5
|
LL | static VOID: Void;
| ^^^^^^^^^^^^^^^^^
|
= note: uninhabited statics cannot be initialized, and any access would be an immediate error
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #74840 <https://github.com/rust-lang/rust/issues/74840>
= note: `#[deny(uninhabited_static)]` (part of `#[deny(future_incompatible)]`) on by default
Future breakage diagnostic:
error: static of uninhabited type
--> $DIR/uninhabited-static.rs:7:5
|
LL | static NEVER: !;
| ^^^^^^^^^^^^^^^
|
= note: uninhabited statics cannot be initialized, and any access would be an immediate error
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #74840 <https://github.com/rust-lang/rust/issues/74840>
= note: `#[deny(uninhabited_static)]` (part of `#[deny(future_incompatible)]`) on by default