Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / lookup / ambig3.C
blob7a0a8377a9168b4ad7bf6f5c4f0515dae8874b76
1 // { dg-do compile }
3 // Copyright (C) 2004 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 23 Sep 2004 <nathan@codesourcery.com>
5 // Origin: Wolfgang Bangerth  <bangerth@dealii.org>
7 // Follow on from Bug 16889:Undetected ambiguity.
9 struct B { 
10   int f(); // { dg-error "int B::f" "" }
11 }; 
13 struct B1 : virtual B {}; 
14 struct B2 : B {};
15 struct B2_2 : B2 {};
16 struct BB : B1, B2_2 {}; 
18 int i = BB().f();  // { dg-error "ambiguous" "" }