blob: 3f3f75bc086119bd6a94a68c774b66b2006f2b9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#![crate_type = "lib"]
#![feature(transmutability)]
#![allow(dead_code)]
mod assert {
use std::mem::{Assume, BikeshedIntrinsicFrom};
pub fn is_maybe_transmutable<Src, Dst>()
where
Dst: BikeshedIntrinsicFrom<
Src,
{ Assume { alignment: true, lifetimes: true, safety: true, validity: true } },
>,
{
}
}
fn test() {
#[repr(C, align(2))]
struct A(u8, u8);
#[repr(C)]
struct B(u8, u8);
assert::is_maybe_transmutable::<B, A>();
//~^ ERROR cannot be safely transmuted
}
|