PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / sfinae25.C
blobe9ee83e1200048c6ab2c51310d989139002c654c
1 template <int I>
2 struct A { };
4 template <int J>
5 void f(A<1/J>);
7 template <int J>
8 void f(...) { }
10 int main()
12   f<0>();