ultimatepp/autotest/Gtypes/Gtypes.cpp
cxl 003da0335b .autotest
git-svn-id: svn://ultimatepp.org/upp/trunk@10421 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2016-11-13 07:12:10 +00:00

15 lines
246 B
C++

#include <Core/Core.h>
using namespace Upp;
CONSOLE_APP_MAIN
{
StdLogSetup(LOG_COUT|LOG_FILE);
Rect r(2, 4, 6, 8);
ASSERT(r * 2 == Rect(4, 8, 12, 16));
ASSERT(r / 2 == Rect(1, 2, 3, 4));
LOG("================= OK");
}