mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
12 lines
128 B
Nim
12 lines
128 B
Nim
discard """
|
|
line: 9
|
|
errormsg: "'a' is deprecated [Deprecated]"
|
|
"""
|
|
|
|
var
|
|
a {.deprecated.}: array[0..11, int]
|
|
|
|
a[8] = 1
|
|
|
|
|