ultimatepp/bazaar/ProductVersionTest/ProductVersionTest.cpp
cxl 2a208a73e1 bazaar: Fixing for C++11
git-svn-id: svn://ultimatepp.org/upp/trunk@9130 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2015-11-01 19:19:17 +00:00

13 lines
207 B
C++

#include <Core/Core.h>
#include <ProductVersion/ProductVersion.h>
using namespace Upp;
CONSOLE_APP_MAIN
{
ProductVersion v(1, 2, 3);
ProductVersion v2 = v;
v2.IncDevel();
DUMP(v < v2);
}