summary refs log tree commit diff stats
path: root/tests/array/tunchecked.nim
blob: f5ac3642d5d496ad01ca0f47e9d6a0508bb39a6e (plain) (blame)
1
2
3
4
5
{.boundchecks: on.}
type Unchecked {.unchecked.} = array[0, char]

var x = cast[ptr Unchecked](alloc(100))
x[5] = 'x'