blob: 28ef82dac0f895146c44fea4991bd297af7f1a14 (
plain)
1
2
3
4
5
|
//@ only-x86_64-unknown-linux-gnu
#![feature(const_transmute)]
pub const ZST: &[u8] = unsafe { std::mem::transmute(1usize) }; //~ ERROR cannot transmute between types of different sizes, or dependently-sized types
|