mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
10 lines
109 B
C++
10 lines
109 B
C++
#include <Core/Core.h>
|
|
|
|
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
int x = 5555;
|
|
int *y = new (&x) int();
|
|
DUMP(*y);
|
|
}
|