2021-07-03 11:18:13 -05:00
|
|
|
#![crate_type = "lib"]
|
|
|
|
#![feature(transmutability)]
|
|
|
|
#![allow(dead_code)]
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
|
|
|
mod assert {
|
2022-08-18 14:39:14 -05:00
|
|
|
use std::mem::{Assume, BikeshedIntrinsicFrom};
|
2021-07-03 11:18:13 -05:00
|
|
|
pub struct Context;
|
|
|
|
|
|
|
|
pub fn is_transmutable<Src, Dst>()
|
|
|
|
where
|
2022-08-18 14:39:14 -05:00
|
|
|
Dst: BikeshedIntrinsicFrom<Src, Context, { Assume::SAFETY }>
|
2021-07-03 11:18:13 -05:00
|
|
|
{}
|
|
|
|
|
|
|
|
pub fn is_maybe_transmutable<Src, Dst>()
|
|
|
|
where
|
2022-08-18 14:39:14 -05:00
|
|
|
Dst: BikeshedIntrinsicFrom<Src, Context, { Assume::SAFETY.and(Assume::VALIDITY) }>
|
2021-07-03 11:18:13 -05:00
|
|
|
{}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn contrast_with_u8() {
|
2022-07-21 12:53:01 -05:00
|
|
|
assert::is_transmutable::<u8, bool>(); //~ ERROR cannot be safely transmuted
|
2021-07-03 11:18:13 -05:00
|
|
|
assert::is_maybe_transmutable::<u8, bool>();
|
|
|
|
assert::is_transmutable::<bool, u8>();
|
|
|
|
}
|