Auto merge of #33457 - oli-obk:const_err/cast_u8_ptr, r=eddyb

casting `&[u8]` to `* const u8` doesn't work in const_eval

fixes #33452

r? @eddyb

cc @Ms2ger
This commit is contained in:
bors 2016-05-09 10:57:35 -07:00
commit faca79fc33
2 changed files with 7 additions and 0 deletions

View file

@ -1117,6 +1117,12 @@ fn cast_const<'tcx>(tcx: &TyCtxt<'tcx>, val: ConstVal, ty: ty::Ty) -> CastResult
Float(f) => cast_const_float(tcx, f, ty),
Char(c) => cast_const_int(tcx, Infer(c as u64), ty),
Function(_) => Err(UnimplementedConstVal("casting fn pointers")),
ByteStr(_) => match ty.sty {
ty::TyRawPtr(_) => {
Err(ErrKind::UnimplementedConstVal("casting a bytestr to a raw ptr"))
},
_ => Err(CannotCast),
},
_ => Err(CannotCast),
}
}

View file

@ -12,6 +12,7 @@
#![deny(const_err)]
const X: *const u8 = b"" as _;
fn main() {
let _ = ((-1 as i8) << 8 - 1) as f32;