predicate aware uninitialized analysis
[official-gcc.git] / gcc / testsuite / g++.dg / parse / error17.C
blobb308c912f1e8efdfb990ed0d1d18607edf324c2c
1 // { dg-options "-fshow-column" }
2 // PR c++/16965
4 template <typename T> struct B { 
5   static int Bar(T); // { dg-error "14:candidates are: |with T = int" }
6 }; 
7 struct D : B<int>, B<char> {}; 
8  
9 int i2 = D::Bar(2); // { dg-error "10:reference to 'Bar' is ambiguous" }