mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 12:02:21 +02:00
16 lines
407 B
Text
16 lines
407 B
Text
# This tests that types that fail generic tests don't create types referenced in methods
|
|
# and also that they get deleted immediately when they are dereferenced.
|
|
|
|
ShowFile("src/Program.bf")
|
|
|
|
GotoText("//Test_Start")
|
|
ToggleBreakpoint()
|
|
RunWithCompiling()
|
|
|
|
ToggleCommentAt("CallExtra_Call")
|
|
AddProjectItem("Bug", "", "$(WorkspaceDir)/Extra.bf")
|
|
|
|
Compile()
|
|
StepInto()
|
|
StepOver()
|
|
AssertEvalEquals("val", "123")
|