* c-typeck.c (digest_init): Issue error messages about
[official-gcc.git] / gcc / testsuite / gcc.dg / dll-2.c
blobc55e920935942b39f72a6d477c7fcf8775a20812
1 /* These dllimport and dllexport appearing for a symbol.
2 The desired behaviour is that if both dllimport
3 and dllexport appear (in either order) the result is dllexport.
5 Microsoft's MSVC 2.0 allows dllimport followed by dllexport for variables,
6 but does not allow dllexport followed by dllimport.
8 In C, it's ok to redeclare a variable so this works for variables
9 and functions. In C++, it only works for functions. */
11 /* { dg-do compile { target arm*-*-pe* } } */
12 /* { dg-do compile { target thumb*-*-pe* } } */
14 __declspec (dllimport) int foo1 ();
15 __declspec (dllexport) int foo1 ();
17 __declspec (dllexport) int foo2 ();
18 __declspec (dllimport) int foo2 ();
20 __declspec (dllimport) int bar1;
21 __declspec (dllexport) int bar1;
23 __declspec (dllexport) int bar2;
24 __declspec (dllimport) int bar2;