error: any use of this value will cause an error --> $DIR/const-eval-overflow2c.rs:24:1 | LL | / const VALS_I8: (i8,) = //~ ERROR any use of this value will cause an error LL | | //~^ const_err LL | | ( LL | | i8::MIN * 2, | | ----------- attempt to multiply with overflow LL | | ); | |_______^ | note: lint level defined here --> $DIR/const-eval-overflow2c.rs:18:9 | LL | #![deny(const_err)] | ^^^^^^^^^ error: any use of this value will cause an error --> $DIR/const-eval-overflow2c.rs:30:1 | LL | / const VALS_I16: (i16,) = //~ ERROR any use of this value will cause an error LL | | ( LL | | i16::MIN * 2, | | ------------ attempt to multiply with overflow LL | | ); | |_______^ error: any use of this value will cause an error --> $DIR/const-eval-overflow2c.rs:35:1 | LL | / const VALS_I32: (i32,) = //~ ERROR any use of this value will cause an error LL | | ( LL | | i32::MIN * 2, | | ------------ attempt to multiply with overflow LL | | ); | |_______^ error: any use of this value will cause an error --> $DIR/const-eval-overflow2c.rs:40:1 | LL | / const VALS_I64: (i64,) = //~ ERROR any use of this value will cause an error LL | | ( LL | | i64::MIN * 2, | | ------------ attempt to multiply with overflow LL | | ); | |_______^ error: any use of this value will cause an error --> $DIR/const-eval-overflow2c.rs:45:1 | LL | / const VALS_U8: (u8,) = //~ ERROR any use of this value will cause an error LL | | ( LL | | u8::MAX * 2, | | ----------- attempt to multiply with overflow LL | | ); | |_______^ error: any use of this value will cause an error --> $DIR/const-eval-overflow2c.rs:50:1 | LL | / const VALS_U16: (u16,) = ( //~ ERROR any use of this value will cause an error LL | | u16::MAX * 2, | | ------------ attempt to multiply with overflow LL | | ); | |_______^ error: any use of this value will cause an error --> $DIR/const-eval-overflow2c.rs:54:1 | LL | / const VALS_U32: (u32,) = ( //~ ERROR any use of this value will cause an error LL | | u32::MAX * 2, | | ------------ attempt to multiply with overflow LL | | ); | |_______^ error: any use of this value will cause an error --> $DIR/const-eval-overflow2c.rs:58:1 | LL | / const VALS_U64: (u64,) = //~ ERROR any use of this value will cause an error LL | | ( LL | | u64::MAX * 2, | | ------------ attempt to multiply with overflow LL | | ); | |_______^ error: any use of this value will cause an error --> $DIR/const-eval-overflow2c.rs:24:1 | LL | / const VALS_I8: (i8,) = //~ ERROR any use of this value will cause an error LL | | //~^ const_err LL | | ( LL | | i8::MIN * 2, | | ----------- attempt to multiply with overflow LL | | ); | |_______^ error[E0080]: erroneous constant used --> $DIR/const-eval-overflow2c.rs:64:5 | LL | foo(VALS_I8); //~ ERROR erroneous constant used | ^^^^^^^^^^^^ referenced constant has errors error[E0080]: erroneous constant used --> $DIR/const-eval-overflow2c.rs:65:5 | LL | foo(VALS_I16); //~ ERROR erroneous constant used | ^^^^^^^^^^^^^ referenced constant has errors error[E0080]: erroneous constant used --> $DIR/const-eval-overflow2c.rs:66:5 | LL | foo(VALS_I32); //~ ERROR erroneous constant used | ^^^^^^^^^^^^^ referenced constant has errors error[E0080]: erroneous constant used --> $DIR/const-eval-overflow2c.rs:67:5 | LL | foo(VALS_I64); //~ ERROR erroneous constant used | ^^^^^^^^^^^^^ referenced constant has errors error[E0080]: erroneous constant used --> $DIR/const-eval-overflow2c.rs:69:5 | LL | foo(VALS_U8); //~ ERROR erroneous constant used | ^^^^^^^^^^^^ referenced constant has errors error[E0080]: erroneous constant used --> $DIR/const-eval-overflow2c.rs:70:5 | LL | foo(VALS_U16); //~ ERROR erroneous constant used | ^^^^^^^^^^^^^ referenced constant has errors error[E0080]: erroneous constant used --> $DIR/const-eval-overflow2c.rs:71:5 | LL | foo(VALS_U32); //~ ERROR erroneous constant used | ^^^^^^^^^^^^^ referenced constant has errors error[E0080]: erroneous constant used --> $DIR/const-eval-overflow2c.rs:72:5 | LL | foo(VALS_U64); //~ ERROR erroneous constant used | ^^^^^^^^^^^^^ referenced constant has errors error: aborting due to 17 previous errors For more information about this error, try `rustc --explain E0080`.