mirror of https://github.com/rust-lang/rust.git
21 lines
477 B
Rust
21 lines
477 B
Rust
#![feature(transmutability)]
|
|
|
|
mod assert {
|
|
use std::mem::TransmuteFrom;
|
|
|
|
pub fn is_transmutable<Src, const ASSUME_ALIGNMENT: bool>()
|
|
where
|
|
Dst: TransmuteFrom<Src, ASSUME_ALIGNMENT>, //~ ERROR cannot find type `Dst` in this scope
|
|
//~| ERROR the constant `ASSUME_ALIGNMENT` is not of type `Assume`
|
|
{
|
|
}
|
|
}
|
|
|
|
fn via_const() {
|
|
struct Src;
|
|
|
|
assert::is_transmutable::<Src, false>();
|
|
}
|
|
|
|
fn main() {}
|