about summary refs log tree commit diff
path: root/tests/ui/transmutability/issue-101739-1.rs
blob: b801e2355404c826a395a687dfb120ee4547a81c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#![feature(transmutability)]

mod assert {
    use std::mem::TransmuteFrom;

    pub fn is_transmutable<Src, const ASSUME_ALIGNMENT: bool>()
    where
        Dst: TransmuteFrom<Src, ASSUME_ALIGNMENT>, //~ ERROR cannot find type `Dst` in this scope
                                                   //~| ERROR the constant `ASSUME_ALIGNMENT` is not of type `Assume`
    {
    }
}

fn via_const() {
    struct Src;

    assert::is_transmutable::<Src, false>();
}

fn main() {}