aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/lookup22.C
blob: c62ce50e12928bfa9104059d52235825f260208f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Origin: GerhardTonn@gmx.de 
// Build don't link:

struct super {
  union {
    int myName;     
    void* secondMember;         
  };
};

struct sub : super {
  int myName() { return 1; }
};