2018-08-10 21:46:59 +00:00
|
|
|
// normalize-stderr-test "\d+ bits" -> "N bits"
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2014-06-12 21:08:44 +00:00
|
|
|
fn main() {}
|