summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/parse/error17.C
blob: b308c912f1e8efdfb990ed0d1d18607edf324c2c (plain)
1
2
3
4
5
6
7
8
9
// { dg-options "-fshow-column" }
// PR c++/16965

template <typename T> struct B { 
  static int Bar(T); // { dg-error "14:candidates are: |with T = int" }
}; 
struct D : B<int>, B<char> {}; 
 
int i2 = D::Bar(2); // { dg-error "10:reference to 'Bar' is ambiguous" }