First version committed to git
[zpugcc/jano.git] / toolchain / gcc / gcc / testsuite / g++.old-deja / g++.other / crash14.C
blobd97577d1d5c0855eef201c0cad293c3aa29c147e
1 // { dg-do assemble  }
2 // Origin: Mark Mitchell <mark@codesourcery.com>
4 struct S 
6 };
8 struct T : public S 
12 struct U : public T 
16 void f (U);
18 int main ()
20   U u;
21   f (u);