mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 20:42:21 +02:00
13 lines
No EOL
344 B
Text
13 lines
No EOL
344 B
Text
ShowFile("src/Data01.bf")
|
|
GotoText("//Test_End")
|
|
ToggleBreakpoint()
|
|
RunWithCompiling()
|
|
|
|
AssertEvalEquals("sizeof(Derived)", "13")
|
|
AssertEvalEquals("strideof(Derived)", "16")
|
|
AssertEvalEquals("alignof(Derived)", "8")
|
|
|
|
# The following fails on Win32 due to LLVM debug info bugs
|
|
if (platform != "Win64") Stop()
|
|
|
|
AssertEvalEquals("iVal", "{ 123 }") |