OSDN Git Service

* class.c (resolve_address_of_overloaded_function): Don't
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / crash14.C
1 // { dg-do assemble  }
2 // Origin: Mark Mitchell <mark@codesourcery.com>
3
4 struct S 
5 {
6 };
7
8 struct T : public S 
9 {
10 };
11
12 struct U : public T 
13 {
14 };
15
16 void f (U);
17
18 int main ()
19 {
20   U u;
21   f (u);
22 }