Files
Nim/tests/ccgbugs/tconstobj.nim
2017-12-14 14:02:13 +01:00

17 lines
274 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"]