mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-05 20:05:15 +00:00
23 lines
245 B
C++
23 lines
245 B
C++
#include "Test.h"
|
|
|
|
class Constructed
|
|
{
|
|
public:
|
|
Constructed()
|
|
{
|
|
TestLog("constructor");
|
|
}
|
|
~Constructed()
|
|
{
|
|
TestLog("destructor");
|
|
}
|
|
};
|
|
|
|
Constructed thing;
|
|
|
|
int main()
|
|
{
|
|
TestLog("main");
|
|
return 0;
|
|
}
|