blob: c164f35c44739d3a74acabe647439b703401b078 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#![feature(transmutability)]
use std::mem::{Assume, TransmuteFrom};
#[repr(C)]
struct W<'a>(&'a ());
fn test<'a>()
where
W<'a>: TransmuteFrom<
(),
{ Assume { alignment: true, lifetimes: true, safety: true, validity: true } },
>,
{
}
fn main() {
test();
//~^ ERROR `()` cannot be safely transmuted into `W<'_>`
}
|