//! The implementation must behave well if const values of wrong types are //! provided. #![crate_type = "lib"] #![feature(transmutability)] #![allow(dead_code, incomplete_features, non_camel_case_types)] mod assert { use std::mem::BikeshedIntrinsicFrom; pub fn is_transmutable< Src, Dst, Context, const ASSUME_ALIGNMENT: bool, const ASSUME_LIFETIMES: bool, const ASSUME_VALIDITY: bool, const ASSUME_VISIBILITY: bool, >() where Dst: BikeshedIntrinsicFrom< Src, Context, ASSUME_ALIGNMENT, ASSUME_LIFETIMES, ASSUME_VALIDITY, ASSUME_VISIBILITY, >, {} } fn test() { struct Context; #[repr(C)] struct Src; #[repr(C)] struct Dst; assert::is_transmutable::(); //~ ERROR mismatched types assert::is_transmutable::(); //~ ERROR mismatched types assert::is_transmutable::(); //~ ERROR mismatched types assert::is_transmutable::(); //~ ERROR mismatched types }