.autotest

git-svn-id: svn://ultimatepp.org/upp/trunk@13662 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2019-10-30 07:50:25 +00:00
parent fb8115698b
commit 3816b09c5a

View file

@ -78,5 +78,13 @@ CONSOLE_APP_MAIN
CHECK_OVERFLOW("-1e500", ReadDouble(), true);
CHECK_OVERFLOW(String('0', 500), ReadDouble(), true);
{
CParser p("+ /* \n */ a");
p.Char('+');
ASSERT(p.GetLine() == 2);
ASSERT(p.GetColumn() == 6);
ASSERT(p.ReadId() == "a");
}
LOG("=========== OK");
}