Files
Nim/tests/accept/compile/tsizeof.nim
2010-02-26 01:26:16 +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))