Test.txt 329 B

123456789101112131415
  1. # This tests that comptime alias changes rebuild dependent types
  2. ShowFile("src/Program.bf")
  3. GotoText("//End")
  4. ToggleBreakpoint()
  5. RunWithCompiling()
  6. AssertEvalEquals("val", "1")
  7. StopRunning()
  8. ShowFile("src/Gen.bf")
  9. ToggleCommentAt("ClassA")
  10. ToggleCommentAt("ClassB")
  11. RunWithCompiling()
  12. AssertEvalEquals("val", "2")
  13. StopRunning()