propane/spec/test_d_parser_identical_rules_lookahead.d
2022-10-15 13:32:33 -04:00

19 lines
290 B
D

import testparser;
import std.stdio;
int main()
{
return 0;
}
unittest
{
string input = "aba";
auto parser = new Testparser.Parser(input);
assert(parser.parse() == true);
input = "abb";
parser = new Testparser.Parser(input);
assert(parser.parse() == true);
}