summary refs log tree commit diff stats
path: root/tests/objects/trequireinit.nim
blob: 202667b0276d4d6708bfe8d05ae474608fc32db5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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