summary refs log tree commit diff stats
path: root/tests/objvariant
diff options
context:
space:
mode:
authorringabout <43030857+ringabout@users.noreply.github.com>2024-02-20 14:31:58 +0800
committerGitHub <noreply@github.com>2024-02-20 07:31:58 +0100
commit39f2df19723d98eaa006cfd0ef13ec93d9f8c1c5 (patch)
tree45fd925e67856eb8ebd1cee126e5ce210dcd2801 /tests/objvariant
parentd6f0f1aca75b97186baf2d785e30cc426482870d (diff)
downloadNim-39f2df19723d98eaa006cfd0ef13ec93d9f8c1c5.tar.gz
fixes #23295; don't expand constants for complex structures (#23297)
fixes #23295
Diffstat (limited to 'tests/objvariant')
-rw-r--r--tests/objvariant/tconstobjvariant.nim18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/objvariant/tconstobjvariant.nim b/tests/objvariant/tconstobjvariant.nim
new file mode 100644
index 000000000..45a647707
--- /dev/null
+++ b/tests/objvariant/tconstobjvariant.nim
@@ -0,0 +1,18 @@
+# This is a sample code, the first echo statement prints out the error
+type
+  A = object
+    case w: uint8
+    of 1:
+      n: int
+    else:
+      other: string
+
+const
+  a = A(w: 1, n: 5)
+
+proc foo =
+
+  let c = [a]
+  doAssert c[0].n == 5
+
+foo()
\ No newline at end of file