# File test/src/simple_parser_test.rb, line 251
  def testThrowCatch
    assertParser('abc', :hello, (char('a')>>throwp(:hello)).catchp(:hello))
    assertParser('abc', ?a, char(?a).catchp(:hello))
  end