mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
15 lines
329 B
Text
15 lines
329 B
Text
![]() |
# This tests that comptime alias changes rebuild dependent types
|
||
|
|
||
|
ShowFile("src/Program.bf")
|
||
|
GotoText("//End")
|
||
|
ToggleBreakpoint()
|
||
|
RunWithCompiling()
|
||
|
AssertEvalEquals("val", "1")
|
||
|
StopRunning()
|
||
|
|
||
|
ShowFile("src/Gen.bf")
|
||
|
ToggleCommentAt("ClassA")
|
||
|
ToggleCommentAt("ClassB")
|
||
|
RunWithCompiling()
|
||
|
AssertEvalEquals("val", "2")
|
||
|
StopRunning()
|