2022-10-03 01:02:38 -05:00
|
|
|
#![feature(transmutability)]
|
|
|
|
|
|
|
|
mod assert {
|
|
|
|
use std::mem::BikeshedIntrinsicFrom;
|
|
|
|
|
|
|
|
pub fn is_transmutable<Src, Context, const ASSUME_ALIGNMENT: bool>()
|
|
|
|
where
|
|
|
|
Dst: BikeshedIntrinsicFrom<Src, Context, ASSUME_ALIGNMENT>, //~ ERROR cannot find type `Dst` in this scope
|
2023-03-09 14:49:05 -06:00
|
|
|
//~^ the constant `ASSUME_ALIGNMENT` is not of type `Assume`
|
2022-10-03 01:02:38 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn via_const() {
|
|
|
|
struct Context;
|
|
|
|
struct Src;
|
|
|
|
|
|
|
|
assert::is_transmutable::<Src, Context, false>();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|