DEBSOURCES
Skip Quicknav
sources / nim / 2.2.0-1 / tests / destructor / objFile.nim
12345678
type Obj* = object v*: int proc `=destroy`(this: var Obj) = echo "igotdestroyed" this.v = -1 var test* = Obj(v: 42)