summary refs log tree commit diff stats
path: root/tests/reject/tdeprecated.nim
blob: f41f0a72fa5ca596d204bf1f21e62ac5e8d64a66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
discard """
  line: 9
  errormsg: "'a' is deprecated [Deprecated]"
"""

var
  a {.deprecated.}: array[0..11, int]
  
a[8] = 1