26 lines
675 B
Text
26 lines
675 B
Text
warning: this constant cannot be used
|
|
--> $DIR/pub_const_err.rs:16:1
|
|
|
|
|
LL | pub const Z: u32 = 0 - 1;
|
|
| ^^^^^^^^^^^^^^^^^^^-----^
|
|
| |
|
|
| attempt to subtract with overflow
|
|
|
|
|
note: lint level defined here
|
|
--> $DIR/pub_const_err.rs:12:9
|
|
|
|
|
LL | #![warn(const_err)]
|
|
| ^^^^^^^^^
|
|
|
|
warning: attempt to subtract with overflow
|
|
--> $DIR/pub_const_err.rs:19:22
|
|
|
|
|
LL | pub type Foo = [i32; 0 - 1];
|
|
| ^^^^^
|
|
|
|
warning: this array length cannot be used
|
|
--> $DIR/pub_const_err.rs:19:22
|
|
|
|
|
LL | pub type Foo = [i32; 0 - 1];
|
|
| ^^^^^ attempt to subtract with overflow
|
|
|