mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-29 10:13:54 +00:00
rollup merge of #18580 : hirschenberger/issue-17713
This commit is contained in:
commit
11790a545c
@ -187,12 +187,12 @@ impl LintPass for TypeLimits {
|
|||||||
|
|
||||||
if let Some(bits) = opt_ty_bits {
|
if let Some(bits) = opt_ty_bits {
|
||||||
let exceeding = if let ast::ExprLit(ref lit) = r.node {
|
let exceeding = if let ast::ExprLit(ref lit) = r.node {
|
||||||
if let ast::LitInt(shift, _) = lit.node { shift > bits }
|
if let ast::LitInt(shift, _) = lit.node { shift >= bits }
|
||||||
else { false }
|
else { false }
|
||||||
} else {
|
} else {
|
||||||
match eval_const_expr_partial(cx.tcx, &**r) {
|
match eval_const_expr_partial(cx.tcx, &**r) {
|
||||||
Ok(const_int(shift)) => { shift as u64 > bits },
|
Ok(const_int(shift)) => { shift as u64 >= bits },
|
||||||
Ok(const_uint(shift)) => { shift > bits },
|
Ok(const_uint(shift)) => { shift >= bits },
|
||||||
_ => { false }
|
_ => { false }
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -12,47 +12,47 @@
|
|||||||
#![allow(unused_variables)]
|
#![allow(unused_variables)]
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let n = 1u8 << 8;
|
let n = 1u8 << 7;
|
||||||
let n = 1u8 << 9; //~ ERROR: bitshift exceeds the type's number of bits
|
let n = 1u8 << 8; //~ ERROR: bitshift exceeds the type's number of bits
|
||||||
let n = 1u16 << 16;
|
let n = 1u16 << 15;
|
||||||
let n = 1u16 << 17; //~ ERROR: bitshift exceeds the type's number of bits
|
let n = 1u16 << 16; //~ ERROR: bitshift exceeds the type's number of bits
|
||||||
let n = 1u32 << 32;
|
let n = 1u32 << 31;
|
||||||
let n = 1u32 << 33; //~ ERROR: bitshift exceeds the type's number of bits
|
let n = 1u32 << 32; //~ ERROR: bitshift exceeds the type's number of bits
|
||||||
let n = 1u64 << 64;
|
let n = 1u64 << 63;
|
||||||
let n = 1u64 << 65; //~ ERROR: bitshift exceeds the type's number of bits
|
let n = 1u64 << 64; //~ ERROR: bitshift exceeds the type's number of bits
|
||||||
let n = 1i8 << 8;
|
let n = 1i8 << 7;
|
||||||
let n = 1i8 << 9; //~ ERROR: bitshift exceeds the type's number of bits
|
let n = 1i8 << 8; //~ ERROR: bitshift exceeds the type's number of bits
|
||||||
let n = 1i16 << 16;
|
let n = 1i16 << 15;
|
||||||
let n = 1i16 << 17; //~ ERROR: bitshift exceeds the type's number of bits
|
let n = 1i16 << 16; //~ ERROR: bitshift exceeds the type's number of bits
|
||||||
let n = 1i32 << 32;
|
let n = 1i32 << 31;
|
||||||
let n = 1i32 << 33; //~ ERROR: bitshift exceeds the type's number of bits
|
let n = 1i32 << 32; //~ ERROR: bitshift exceeds the type's number of bits
|
||||||
let n = 1i64 << 64;
|
let n = 1i64 << 63;
|
||||||
let n = 1i64 << 65; //~ ERROR: bitshift exceeds the type's number of bits
|
let n = 1i64 << 64; //~ ERROR: bitshift exceeds the type's number of bits
|
||||||
|
|
||||||
let n = 1u8 >> 8;
|
let n = 1u8 >> 7;
|
||||||
let n = 1u8 >> 9; //~ ERROR: bitshift exceeds the type's number of bits
|
let n = 1u8 >> 8; //~ ERROR: bitshift exceeds the type's number of bits
|
||||||
let n = 1u16 >> 16;
|
let n = 1u16 >> 15;
|
||||||
let n = 1u16 >> 17; //~ ERROR: bitshift exceeds the type's number of bits
|
let n = 1u16 >> 16; //~ ERROR: bitshift exceeds the type's number of bits
|
||||||
let n = 1u32 >> 32;
|
let n = 1u32 >> 31;
|
||||||
let n = 1u32 >> 33; //~ ERROR: bitshift exceeds the type's number of bits
|
let n = 1u32 >> 32; //~ ERROR: bitshift exceeds the type's number of bits
|
||||||
let n = 1u64 >> 64;
|
let n = 1u64 >> 63;
|
||||||
let n = 1u64 >> 65; //~ ERROR: bitshift exceeds the type's number of bits
|
let n = 1u64 >> 64; //~ ERROR: bitshift exceeds the type's number of bits
|
||||||
let n = 1i8 >> 8;
|
let n = 1i8 >> 7;
|
||||||
let n = 1i8 >> 9; //~ ERROR: bitshift exceeds the type's number of bits
|
let n = 1i8 >> 8; //~ ERROR: bitshift exceeds the type's number of bits
|
||||||
let n = 1i16 >> 16;
|
let n = 1i16 >> 15;
|
||||||
let n = 1i16 >> 17; //~ ERROR: bitshift exceeds the type's number of bits
|
let n = 1i16 >> 16; //~ ERROR: bitshift exceeds the type's number of bits
|
||||||
let n = 1i32 >> 32;
|
let n = 1i32 >> 31;
|
||||||
let n = 1i32 >> 33; //~ ERROR: bitshift exceeds the type's number of bits
|
let n = 1i32 >> 32; //~ ERROR: bitshift exceeds the type's number of bits
|
||||||
let n = 1i64 >> 64;
|
let n = 1i64 >> 63;
|
||||||
let n = 1i64 >> 65; //~ ERROR: bitshift exceeds the type's number of bits
|
let n = 1i64 >> 64; //~ ERROR: bitshift exceeds the type's number of bits
|
||||||
|
|
||||||
let n = 1u8;
|
let n = 1u8;
|
||||||
let n = n << 8;
|
let n = n << 7;
|
||||||
let n = n << 9; //~ ERROR: bitshift exceeds the type's number of bits
|
let n = n << 8; //~ ERROR: bitshift exceeds the type's number of bits
|
||||||
|
|
||||||
let n = 1u8 << -9; //~ ERROR: bitshift exceeds the type's number of bits
|
let n = 1u8 << -8; //~ ERROR: bitshift exceeds the type's number of bits
|
||||||
|
|
||||||
let n = 1u8 << (4+4);
|
let n = 1u8 << (4+3);
|
||||||
let n = 1u8 << (4+5); //~ ERROR: bitshift exceeds the type's number of bits
|
let n = 1u8 << (4+4); //~ ERROR: bitshift exceeds the type's number of bits
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user