mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
* fix #20253 * change NimbleStableCommit * Update koch.nim Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
11 lines
169 B
Nim
11 lines
169 B
Nim
discard """
|
|
errormsg: "'result' requires explicit initialization"
|
|
line: 10
|
|
"""
|
|
|
|
type Meow {.requiresInit.} = object
|
|
init: bool
|
|
|
|
proc initMeow(): Meow =
|
|
discard
|