Files
Nim/tests/compile/tsizeof.nim
2011-11-19 15:45:51 +01:00

11 lines
157 B
Nim
Executable File

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