re PR c++/3004 (Accepts illegal code)
[platform/upstream/gcc.git] / gcc / testsuite / g++.dg / parse / ambig3.C
1 // PR c++/9452
2 // Origin: Wolfgang Bangerth <bangerth@ticam.utexas.edu>
3 // { dg-do compile }
4
5 template <int> struct A { static const int i = 1; };
6 template <int> struct B {};
7
8 template <typename> void foo(B<0>) {} // { dg-error "" }
9
10 template <typename, int j> B<A<j>::i-1> foo(B<j>) { return B<0>(); } // { dg-error "" }
11
12 void bar() { foo<int>(B<0>()); } // { dg-error "ambiguous" }