mirror of
https://github.com/nim-lang/Nim.git
synced 2026-05-02 12:04:44 +00:00
fixes #23295
This commit is contained in:
18
tests/objvariant/tconstobjvariant.nim
Normal file
18
tests/objvariant/tconstobjvariant.nim
Normal file
@@ -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()
|
||||
Reference in New Issue
Block a user