Files
Nim/tests/ccgbugs/tconstobj.nim
2014-11-27 08:36:58 +01:00

17 lines
270 B
Nim

discard """
output: '''(FirstName: James, LastName: Franco)'''
"""
# bug #1547
import tables
type Person* = object
FirstName*: string
LastName*: string
let people = {
"001": Person(FirstName: "James", LastName: "Franco")
}.toTable()
echo people["001"]