2024-06-21 05:15:36 +00:00
|
|
|
//@ normalize-stderr-test: "\d+ bits" -> "N bits"
|
2018-08-10 21:46:59 +00:00
|
|
|
|
2014-06-12 21:08:44 +00:00
|
|
|
// Tests that `transmute` cannot be called on types of different size.
|
|
|
|
|
2014-06-13 04:34:32 +00:00
|
|
|
#![allow(warnings)]
|
2016-07-01 16:32:53 +00:00
|
|
|
#![feature(specialization)]
|
2014-06-13 04:34:32 +00:00
|
|
|
|
2014-06-12 21:08:44 +00:00
|
|
|
use std::mem::transmute;
|
|
|
|
|
|
|
|
unsafe fn f() {
|
|
|
|
let _: i8 = transmute(16i16);
|
2018-12-21 14:15:47 +00:00
|
|
|
//~^ ERROR cannot transmute between types of different sizes, or dependently-sized types
|
2014-06-12 21:08:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsafe fn g<T>(x: &T) {
|
|
|
|
let _: i8 = transmute(x);
|
2018-12-21 14:15:47 +00:00
|
|
|
//~^ ERROR cannot transmute between types of different sizes, or dependently-sized types
|
2014-06-12 21:08:44 +00:00
|
|
|
}
|
|
|
|
|
2016-07-01 16:32:53 +00:00
|
|
|
trait Specializable { type Output; }
|
|
|
|
|
|
|
|
impl<T> Specializable for T {
|
|
|
|
default type Output = u16;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe fn specializable<T>(x: u16) -> <T as Specializable>::Output {
|
|
|
|
transmute(x)
|
2018-12-21 14:15:47 +00:00
|
|
|
//~^ ERROR cannot transmute between types of different sizes, or dependently-sized types
|
2016-07-01 16:32:53 +00:00
|
|
|
}
|
|
|
|
|
2024-05-29 20:07:56 +00:00
|
|
|
#[repr(align(32))]
|
|
|
|
struct OverAlignZST;
|
|
|
|
pub struct PtrAndOverAlignZST<T: ?Sized> {
|
|
|
|
_inner: *mut T,
|
|
|
|
_other: OverAlignZST,
|
|
|
|
}
|
|
|
|
pub unsafe fn shouldnt_work<T: ?Sized>(from: *mut T) -> PtrAndOverAlignZST<T> {
|
|
|
|
transmute(from)
|
|
|
|
//~^ ERROR cannot transmute between types of different sizes, or dependently-sized types
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct PtrAndEmptyArray<T: ?Sized> {
|
|
|
|
_inner: *mut T,
|
|
|
|
_other: [*mut T; 0],
|
|
|
|
}
|
|
|
|
pub unsafe fn shouldnt_work2<T: ?Sized>(from: *mut T) -> PtrAndEmptyArray<T> {
|
|
|
|
std::mem::transmute(from)
|
|
|
|
//~^ ERROR cannot transmute between types of different sizes, or dependently-sized types
|
|
|
|
}
|
|
|
|
|
2014-06-12 21:08:44 +00:00
|
|
|
fn main() {}
|