OSDN Git Service

new
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / t41.C
1 // Build don't link: 
2
3 struct A {
4   struct B {
5     B (int);
6   };
7   static int foop (B);
8   int splat () {
9     return foop (B (1));
10   }
11 };