summary refs log tree commit diff
path: root/src/test/ui/consts/const-eval/transmute-const.rs
blob: 1cfad00ca76df7126e41dd03403b265d1030cca8 (plain)
1
2
3
4
5
6
use std::mem;

static FOO: bool = unsafe { mem::transmute(3u8) };
//~^ ERROR it is undefined behavior to use this value

fn main() {}