mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-03 11:42:33 +00:00
15 lines
257 B
Nim
15 lines
257 B
Nim
discard """
|
|
errormsg: "fields not initialized: bar"
|
|
line: "13"
|
|
"""
|
|
|
|
# bug #2355
|
|
type
|
|
Foo = object
|
|
foo: string not nil
|
|
bar: string not nil
|
|
|
|
# Create instance without initializaing the `bar` field
|
|
var f = Foo(foo: "foo")
|
|
echo f.bar.isNil # true
|