summary refs log tree commit diff stats
path: root/tests/ccgbugs/tconstobj.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ccgbugs/tconstobj.nim')
-rw-r--r--tests/ccgbugs/tconstobj.nim16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/ccgbugs/tconstobj.nim b/tests/ccgbugs/tconstobj.nim
deleted file mode 100644
index 51cf661ee..000000000
--- a/tests/ccgbugs/tconstobj.nim
+++ /dev/null
@@ -1,16 +0,0 @@
-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"]