Files
Nim/tests/objects/mobject_default_value.nim
ringabout 34ab149b9d progress
Co-authored-by: Copilot <copilot@github.com>
2026-05-01 21:11:22 +08:00

16 lines
260 B
Nim

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