rust/tests/ui/transmutability/issue-101739-1.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
481 B
Rust
Raw Normal View History

2022-10-03 06:02:38 +00:00
#![feature(transmutability)]
mod assert {
use std::mem::BikeshedIntrinsicFrom;
pub fn is_transmutable<Src, const ASSUME_ALIGNMENT: bool>()
2022-10-03 06:02:38 +00:00
where
Dst: BikeshedIntrinsicFrom<Src, ASSUME_ALIGNMENT>, //~ ERROR cannot find type `Dst` in this scope
//~^ the constant `ASSUME_ALIGNMENT` is not of type `Assume`
//~| ERROR: mismatched types
2022-10-03 06:02:38 +00:00
{
}
}
fn via_const() {
struct Src;
assert::is_transmutable::<Src, false>();
2022-10-03 06:02:38 +00:00
}
fn main() {}