rust
use const_std_vec::ConstVec;
const TEST : &'static Vec<u8> = &ConstVec::new(b"123").as_vec();
assert_eq!(b"123",TEST.as_slice());
rust
use const_std_vec::ConstVec;
const TEST : Vec<u8> = ConstVec::new(b"123").as_vec();
// TEST; // it will panic!
License: MIT OR Apache-2.0