aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.other/linkage1.C
blob: 8d9044544b36d88aa9c5bb7f755350f82404100f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// { dg-do assemble { target { ! c++11 } } }
typedef struct {
  int i;
} *p;

void f (p) { }			// { dg-error "with no linkage" }
p q;				// { dg-warning "with no linkage" }

int main()
{
  extern p j;			// { dg-warning "with no linkage" }
  struct A { int j; };
  extern A a;			// { dg-warning "with no linkage" }
  extern void f (A);		// { dg-error "with no linkage" }
}