3 // Copyright (C) 2004 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 24 Aug 2004 <nathan@codesourcery.com>
5 // Origin: Wolfgang Bangerth <bangerth@dealii.org>
7 // Bug 16889:Undetected ambiguity.
10 int f(); // { dg-error "int B::f" "" }
13 struct B1 : virtual B {};
15 struct BB : B1, B2 {};
17 int i = BB().f(); // { dg-error "ambiguous" "" }