aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/linker-library-duplicates/main.cpp
blob: ab698e90b484077db501e59ddda6ec95407e061e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "../dllexport.h"

DLL_IMPORT void lib1Func();
DLL_IMPORT void lib2Func();
DLL_IMPORT void lib3Func();

int main()
{
    lib1Func();
    lib2Func();
    lib3Func();
    return 0;
}