15 lines
188 B
D
15 lines
188 B
D
import testparser;
|
|
import std.stdio;
|
|
|
|
int main()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
unittest
|
|
{
|
|
string input = ``;
|
|
auto parser = new Testparser.Parser(input);
|
|
assert(parser.parse() == true);
|
|
}
|