mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
10 lines
228 B
Nim
10 lines
228 B
Nim
discard """
|
|
errormsg: "The MPlayerObj type doesn't have a default value. The following fields must be initialized: foo."
|
|
"""
|
|
|
|
type
|
|
MPlayerObj* {.requiresInit.} = object
|
|
foo: range[5..10] = 5
|
|
|
|
var a: MPlayerObj
|
|
echo a.foo |