rust/tests/ui/transmutability/issue-101739-1.rs
2023-01-11 09:32:08 +00:00

22 lines
458 B
Rust

#![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
//~^ ERROR mismatched types
{
}
}
fn via_const() {
struct Context;
struct Src;
assert::is_transmutable::<Src, Context, false>();
}
fn main() {}