summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/lint-exceeding-bitshifts.opt.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /src/test/ui/lint/lint-exceeding-bitshifts.opt.stderr
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/lint/lint-exceeding-bitshifts.opt.stderr')
-rw-r--r--src/test/ui/lint/lint-exceeding-bitshifts.opt.stderr152
1 files changed, 0 insertions, 152 deletions
diff --git a/src/test/ui/lint/lint-exceeding-bitshifts.opt.stderr b/src/test/ui/lint/lint-exceeding-bitshifts.opt.stderr
deleted file mode 100644
index 3a84c6c1f..000000000
--- a/src/test/ui/lint/lint-exceeding-bitshifts.opt.stderr
+++ /dev/null
@@ -1,152 +0,0 @@
-warning: this arithmetic operation will overflow
- --> $DIR/lint-exceeding-bitshifts.rs:18:20
- |
-LL | const N: i32 = T::N << 42;
- | ^^^^^^^^^^ attempt to shift left by `42_i32`, which would overflow
- |
-note: the lint level is defined here
- --> $DIR/lint-exceeding-bitshifts.rs:10:9
- |
-LL | #![warn(arithmetic_overflow)]
- | ^^^^^^^^^^^^^^^^^^^
-
-warning: this arithmetic operation will overflow
- --> $DIR/lint-exceeding-bitshifts.rs:22:13
- |
-LL | let _ = x << 42;
- | ^^^^^^^ attempt to shift left by `42_i32`, which would overflow
-
-warning: this arithmetic operation will overflow
- --> $DIR/lint-exceeding-bitshifts.rs:27:15
- |
-LL | let n = 1u8 << 8;
- | ^^^^^^^^ attempt to shift left by `8_i32`, which would overflow
-
-warning: this arithmetic operation will overflow
- --> $DIR/lint-exceeding-bitshifts.rs:29:15
- |
-LL | let n = 1u16 << 16;
- | ^^^^^^^^^^ attempt to shift left by `16_i32`, which would overflow
-
-warning: this arithmetic operation will overflow
- --> $DIR/lint-exceeding-bitshifts.rs:31:15
- |
-LL | let n = 1u32 << 32;
- | ^^^^^^^^^^ attempt to shift left by `32_i32`, which would overflow
-
-warning: this arithmetic operation will overflow
- --> $DIR/lint-exceeding-bitshifts.rs:33:15
- |
-LL | let n = 1u64 << 64;
- | ^^^^^^^^^^ attempt to shift left by `64_i32`, which would overflow
-
-warning: this arithmetic operation will overflow
- --> $DIR/lint-exceeding-bitshifts.rs:35:15
- |
-LL | let n = 1i8 << 8;
- | ^^^^^^^^ attempt to shift left by `8_i32`, which would overflow
-
-warning: this arithmetic operation will overflow
- --> $DIR/lint-exceeding-bitshifts.rs:37:15
- |
-LL | let n = 1i16 << 16;
- | ^^^^^^^^^^ attempt to shift left by `16_i32`, which would overflow
-
-warning: this arithmetic operation will overflow
- --> $DIR/lint-exceeding-bitshifts.rs:39:15
- |
-LL | let n = 1i32 << 32;
- | ^^^^^^^^^^ attempt to shift left by `32_i32`, which would overflow
-
-warning: this arithmetic operation will overflow
- --> $DIR/lint-exceeding-bitshifts.rs:41:15
- |
-LL | let n = 1i64 << 64;
- | ^^^^^^^^^^ attempt to shift left by `64_i32`, which would overflow
-
-warning: this arithmetic operation will overflow
- --> $DIR/lint-exceeding-bitshifts.rs:44:15
- |
-LL | let n = 1u8 >> 8;
- | ^^^^^^^^ attempt to shift right by `8_i32`, which would overflow
-
-warning: this arithmetic operation will overflow
- --> $DIR/lint-exceeding-bitshifts.rs:46:15
- |
-LL | let n = 1u16 >> 16;
- | ^^^^^^^^^^ attempt to shift right by `16_i32`, which would overflow
-
-warning: this arithmetic operation will overflow
- --> $DIR/lint-exceeding-bitshifts.rs:48:15
- |
-LL | let n = 1u32 >> 32;
- | ^^^^^^^^^^ attempt to shift right by `32_i32`, which would overflow
-
-warning: this arithmetic operation will overflow
- --> $DIR/lint-exceeding-bitshifts.rs:50:15
- |
-LL | let n = 1u64 >> 64;
- | ^^^^^^^^^^ attempt to shift right by `64_i32`, which would overflow
-
-warning: this arithmetic operation will overflow
- --> $DIR/lint-exceeding-bitshifts.rs:52:15
- |
-LL | let n = 1i8 >> 8;
- | ^^^^^^^^ attempt to shift right by `8_i32`, which would overflow
-
-warning: this arithmetic operation will overflow
- --> $DIR/lint-exceeding-bitshifts.rs:54:15
- |
-LL | let n = 1i16 >> 16;
- | ^^^^^^^^^^ attempt to shift right by `16_i32`, which would overflow
-
-warning: this arithmetic operation will overflow
- --> $DIR/lint-exceeding-bitshifts.rs:56:15
- |
-LL | let n = 1i32 >> 32;
- | ^^^^^^^^^^ attempt to shift right by `32_i32`, which would overflow
-
-warning: this arithmetic operation will overflow
- --> $DIR/lint-exceeding-bitshifts.rs:58:15
- |
-LL | let n = 1i64 >> 64;
- | ^^^^^^^^^^ attempt to shift right by `64_i32`, which would overflow
-
-warning: this arithmetic operation will overflow
- --> $DIR/lint-exceeding-bitshifts.rs:62:15
- |
-LL | let n = n << 8;
- | ^^^^^^ attempt to shift left by `8_i32`, which would overflow
-
-warning: this arithmetic operation will overflow
- --> $DIR/lint-exceeding-bitshifts.rs:64:15
- |
-LL | let n = 1u8 << -8;
- | ^^^^^^^^^ attempt to shift left by `-8_i32`, which would overflow
-
-warning: this arithmetic operation will overflow
- --> $DIR/lint-exceeding-bitshifts.rs:69:15
- |
-LL | let n = 1u8 << (4+4);
- | ^^^^^^^^^^^^ attempt to shift left by `8_i32`, which would overflow
-
-warning: this arithmetic operation will overflow
- --> $DIR/lint-exceeding-bitshifts.rs:71:15
- |
-LL | let n = 1i64 >> [64][0];
- | ^^^^^^^^^^^^^^^ attempt to shift right by `64_i32`, which would overflow
-
-warning: this arithmetic operation will overflow
- --> $DIR/lint-exceeding-bitshifts.rs:77:15
- |
-LL | let n = 1_isize << BITS;
- | ^^^^^^^^^^^^^^^ attempt to shift left by `%BITS%`, which would overflow
-
-warning: this arithmetic operation will overflow
- --> $DIR/lint-exceeding-bitshifts.rs:78:15
- |
-LL | let n = 1_usize << BITS;
- | ^^^^^^^^^^^^^^^ attempt to shift left by `%BITS%`, which would overflow
-
-warning: 24 warnings emitted
-