Files
Nim/tests/array/tunchecked.nim
2017-08-28 15:44:35 +02:00

6 lines
118 B
Nim

{.boundchecks: on.}
type Unchecked {.unchecked.} = array[0, char]
var x = cast[ptr Unchecked](alloc(100))
x[5] = 'x'