v/vlib/v/checker/tests/hex_literal_overflow.vv

7 lines
82 B
V

a := '\x11ffff'
b := '\x20ffff'
c := '\x10fffff'
println(a)
println(b)
println(c)