mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
10 lines
228 B
V
10 lines
228 B
V
type UUID = [16]byte
|
|
|
|
const codec_test_uuid = UUID([byte(0x6b), 0xa7, 0xb8, 0x10, 0x9d, 0xad, 0x11, 0xd1, 0x80, 0xb4,
|
|
0x00, 0xc0, 0x4f, 0xd4, 0x30, 0xc8]!)
|
|
|
|
fn test_const_from_bytes() {
|
|
println(codec_test_uuid)
|
|
assert true
|
|
}
|