# File test/src/simple_parser_test.rb, line 102
  def testInputConsumptionDoesNotFailForAlt
    assertParser('abc', 'abc', alt(str('ab')>>char('d'), str('abc')))
  end