mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-03 03:32:32 +00:00
12 lines
198 B
Nim
12 lines
198 B
Nim
discard """
|
|
errormsg: "cannot evaluate 'sizeof/alignof' because its type is not defined completely"
|
|
line: 9
|
|
"""
|
|
|
|
type
|
|
MyStruct {.importc: "MyStruct".} = object
|
|
|
|
const i = sizeof(MyStruct)
|
|
|
|
echo i
|