Raw File
StackNoConstructor.cpp
#include "nscore.h"

struct NS_STACK_CLASS A
{
  int i;
};

void* Foo()
{
  return new A();
}
back to top