mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 03:52:19 +02:00
15 lines
No EOL
359 B
Text
15 lines
No EOL
359 B
Text
# This tests that comptime changes to generic passed extension constraints rebuilds dependencies
|
|
|
|
ShowFile("src/Program.bf")
|
|
GotoText("//End")
|
|
ToggleBreakpoint()
|
|
RunWithCompiling()
|
|
AssertEvalEquals("val", "1")
|
|
StopRunning()
|
|
|
|
ShowFile("src/Gen.bf")
|
|
ToggleCommentAt("Void")
|
|
ToggleCommentAt("String")
|
|
RunWithCompiling()
|
|
AssertEvalEquals("val", "2")
|
|
StopRunning() |