.autotest

git-svn-id: svn://ultimatepp.org/upp/trunk@10497 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2016-11-28 07:40:34 +00:00
parent a21abf533d
commit 5fc5893497

View file

@ -21,7 +21,7 @@ CONSOLE_APP_MAIN
ASSERT(FindIndex(h, h[i]) == FindIndex(h, h[i]));
ASSERT(Count(h, 200) == CoCount(h, 200));
ASSERT(CountIf(h, [](auto x) { return x % 17 == 0; }) == CoCountIf(h, [](auto x) { return x % 17 == 0; }));
ASSERT(CountIf(h, [](int x) { return x % 17 == 0; }) == CoCountIf(h, [](int x) { return x % 17 == 0; }));
Vector<int> a;
Array<int> b;