blob: a1be7075a8a038c7154f2e9c12deae70801bb912 (
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
28
29
|
#![crate_type = "lib"]
#![feature(transmutability)]
#![allow(dead_code)]
mod assert {
use std::mem::{Assume, BikeshedIntrinsicFrom};
pub struct Context;
pub fn is_maybe_transmutable<Src, Dst>()
where
Dst: BikeshedIntrinsicFrom<
Src,
Context,
{ 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
}
|