summaryrefslogtreecommitdiffstats
path: root/Tests/CxxOnly/testCxxModule.cxx
blob: 5015d07f822b82a142e70c4e24ac1a5ee4057fd8 (plain)
1
2
3
4
5
6
7
8
9
#ifdef _WIN32
#  define TEST_EXPORT __declspec(dllexport)
#else
#  define TEST_EXPORT
#endif
TEST_EXPORT int testCxxModule(void)
{
  return 0;
}