Files
Nim/tests/compile/tsizeof.nim
2013-03-16 23:53:07 +01:00

11 lines
157 B
Nim

# Test the sizeof proc
type
TMyRecord {.final.} = object
x, y: int
b: bool
r: float
s: string
write(stdout, sizeof(TMyRecord))