23ab1bda92
Migrate to a simplified safety analysis that does not use visibility. Closes https://github.com/rust-lang/project-safe-transmute/issues/15
28 lines
552 B
Rust
28 lines
552 B
Rust
#![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
|
|
}
|