summary refs log tree commit diff stats
path: root/tests/objects/mobject_default_value.nim
blob: 2245495015075c67a659514f81f1ae0c2cb4ea30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
type
  Clean = object
    mem: int
  Default* = object
    poi: int = 12
    clc: Clean
    se*: range[0'i32 .. high(int32)]

  NonDefault* = object
    poi: int

  PrellDeque*[T] = object
    pendingTasks*: range[0'i32 .. high(int32)]
    head: T
    tail: T