aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/t40.C
blob: 34768a995fff10c5c7043c4d9b5e00661de37a2c (plain)
1
2
3
4
5
6
7
8
9
10
11
// Build don't link: 

struct A {
  struct B {
    B (int);
  };
  static int foop (B);
  static int splat () {
    return foop (B (1));
  }
};