mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
13 lines
156 B
Nim
13 lines
156 B
Nim
discard """
|
|
file: "topena1.nim"
|
|
line: 9
|
|
errormsg: "invalid type"
|
|
"""
|
|
# Tests a special bug
|
|
|
|
var
|
|
x: ref openarray[string] #ERROR_MSG invalid type
|
|
|
|
|
|
|