Signed-off-by: Dimitar Dobrev <dpldobrev@yahoo.com>
@ -88,3 +88,8 @@ Bar operator+(const Bar& b1, const Bar& b2)
b.B = b1.B + b2.B;
return b;
}
Bar indirectReturn()
{
return Bar();
@ -74,3 +74,5 @@ public:
DLL_API Bar operator+(const Bar &, const Bar &);
int DLL_API unsafeFunction(const Bar& ret, char* testForString, void (*foo)(int));
DLL_API Bar indirectReturn();