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