rust/tests/ui/transmutability/alignment/align-fail.rs

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

23 lines
532 B
Rust
Raw Normal View History

2023-04-27 20:33:52 -05:00
//@ check-fail
#![feature(transmutability)]
mod assert {
use std::mem::{Assume, TransmuteFrom};
2023-04-27 20:33:52 -05:00
pub fn is_maybe_transmutable<Src, Dst>()
where
Dst: TransmuteFrom<Src, {
2023-04-27 20:33:52 -05:00
Assume {
alignment: false,
lifetimes: true,
safety: true,
validity: true,
}
}>
{}
}
fn main() {
assert::is_maybe_transmutable::<&'static [u8; 0], &'static [u16; 0]>(); //~ ERROR `&[u8; 0]` cannot be safely transmuted into `&[u16; 0]`
}