summary refs log tree commit diff stats
path: root/tests/destructor/objFile.nim
blob: 436c090d101d49cb671e26091619dcfb589ce719 (plain) (blame)
1
2
3
4
5
6
7
8
type Obj* = object
  v*: int

proc `=destroy`(this: var Obj) =
  echo "igotdestroyed"
  this.v = -1

var test* = Obj(v: 42)