#![feature(transmutability)] mod assert { use std::mem::BikeshedIntrinsicFrom; pub fn is_transmutable() where Dst: BikeshedIntrinsicFrom, //~ ERROR cannot find type `Dst` in this scope //~^ ERROR mismatched types { } } fn via_const() { struct Context; struct Src; assert::is_transmutable::(); } fn main() {}