blob: 97b5aa900597b6753cb0fd446235fe6147318789 [file] [log] [blame]
#ifndef SHAREDLIB_DEFINE
# error Expected SHAREDLIB_DEFINE
#endif
#ifndef SHAREDDEPENDLIB_DEFINE
# error Expected SHAREDDEPENDLIB_DEFINE
#endif
#include "shareddependlib.h"
#include "sharedlib.h"
int main(int, char**)
{
SharedLibObject sl;
SharedDependLibObject sdl = sl.object();
return sdl.foo() + sl.foo();
}