summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/lookup/ambig3.C
blob: 7a0a8377a9168b4ad7bf6f5c4f0515dae8874b76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// { dg-do compile }

// Copyright (C) 2004 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 23 Sep 2004 <nathan@codesourcery.com>
// Origin: Wolfgang Bangerth  <bangerth@dealii.org>

// Follow on from Bug 16889:Undetected ambiguity.

struct B { 
  int f(); // { dg-error "int B::f" "" }
}; 
 
struct B1 : virtual B {}; 
struct B2 : B {};
struct B2_2 : B2 {};
struct BB : B1, B2_2 {}; 
 
int i = BB().f();  // { dg-error "ambiguous" "" }