1 // { dg-do compile { target i?86-*-cygwin* i?86-*-mingw*} }
2 // Test handling of MI thunks in dllimported classes.
4 // To build the dll and client app:
5 // g++ -shared -o MI.dll dllexport-MI1.C
6 // g++ -o MItest.exe dllimport-MI1.C -L. MI.dll
11 extern DLL_IMPEXP MI1 dllMI1;
13 // This should use the implicit copy ctor for D1 (not imported)
14 // and the explicit copy ctor for D2 (dll-imported).
15 MI1 dllMI1LocalCopy = dllMI1;
17 class MI2 : public D1, public D2
20 int vf() const { return D2::vf();}
23 class MI3 : public MI1
34 if (dllMI1.vf() != D1_return)
37 if (dllMI1LocalCopy.vf() != D1_return)
40 if (bar1.vf() != D1_return)
43 if (bar2.vf() != (D2_return))
46 if (bar3.vf() != D1_return )
50 // Scan for import of explicit copy ctor for D2, but no import
51 // of compiler generated copy ctor for D1.
52 // { dg-final { scan-assembler "__imp___ZN2D2C2ERKS_" } }
53 // { dg-final { scan-assembler-not "__imp___ZN2D1C2ERKS_" } }