ultimatepp/autotest/ConsoleExit/ConsoleExit.cpp
cxl d02fe7d7c7 Creating the *real* autotest nest
git-svn-id: svn://ultimatepp.org/upp/trunk@7141 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2014-04-02 18:36:01 +00:00

12 lines
168 B
C++

#include <Core/Core.h>
using namespace Upp;
CONSOLE_APP_MAIN
{
LOG("Hello!");
Buffer<int> x(200);
Exit(0);
LOG("Control should never reach here...");
NEVER();
}