mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
21 lines
239 B
C++
21 lines
239 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
class A
|
|
{
|
|
public:
|
|
A() { DUMP(Environment().Get("PATH")); }
|
|
};
|
|
|
|
A a; // <<= STATIC OBJECT CAUSES CRASH
|
|
|
|
struct B : TopWindow
|
|
{
|
|
|
|
};
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
B().Run();
|
|
}
|