Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / inherit / base2.C
blob5c7d812c760a086484ca7504556be0d937324d2f
1 // Copyright (C) 2004 Free Software Foundation, Inc.
2 // Contributed by Nathan Sidwell 23 Sep 2004 <nathan@codesourcery.com>
4 // Origin: Wolfgang Bangerth <bangerth@dealii.org>
5 // Bug 17620. Bogus duplicate base error.
7 struct S {}; 
8  
9 typedef S B; 
11 struct D1 : B {}; 
12 struct D2 : B {};