mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
17 lines
229 B
C++
17 lines
229 B
C++
#include <Core/Core.h>
|
|
|
|
using namespace Upp;
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
// MemoryAlloc(123);
|
|
for(int i = 0; i < 500; i++) {
|
|
size_t n = i;
|
|
// MemoryAllocSz(n);
|
|
DUMP(i);
|
|
DUMP(n);
|
|
ASSERT(i <= n);
|
|
}
|
|
new int;
|
|
}
|
|
|