aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/dllimport5.C
blob: 8e6f166295ed7e519b6ca18d667e744ef4c52bc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// { dg-do compile { target i?86-*-cygwin* i?86-*-mingw*} }
//  Report error if static symbol definition has dllimport attribute.

__attribute__((dllimport))
 int impvar;			// OK,  implicit "extern"

 static __attribute__((dllimport))
 int static_impvar;	// { dg-error "external linkage" }

 static  __attribute__((dllexport))
int static_expvar;	// { dg-error "external linkage" }

static __attribute__((dllimport))
void static_impfun(void);	// { dg-error "external linkage" }

void foo()
{
  __attribute__((dllimport))
  int foovar;	// OK,  implicit "extern" 
  foovar++;
}

void bar()
{
  __attribute__((dllexport))
  int barvar;	// { dg-error "external linkage" }
  barvar++;
}