Files
Nim/tests/vm/tconstobj.nim
2015-06-06 13:25:20 +02:00

15 lines
154 B
Nim

discard """
output: '''(name: hello)'''
"""
# bug #2774
type Foo = object
name: string
const fooArray = [
Foo(name: "hello")
]
echo fooArray[0]