OSDN Git Service

2012-12-15 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / nolinkage1a.cc
1 #include "nolinkage1.h"
2
3 typedef struct { double d; } *BP;
4
5 void f(BP) {  }
6
7 A<BP> b;
8
9 static void g()
10 {
11   struct B { };
12   A<B> a;
13 }
14
15 int dummy() { g(); f(0); }