# File lib/Borges/TestCase/ContinuationTest.rb, line 5
  def testBlockEscape
    tmp = 0
    tmp2 = nil
    x = proc do
      tmp += 1
      tmp2.call
    end

    callcc do |cc|
      tmp2 = cc
      x.call
    end

    tmp2 = proc do end

    x.call
    assert_equal(2, tmp)
  end