PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / operator4.C
blob972d52fc184e6df5da31ac62a85d1abadc0dd41b
1 // PR c++/17068
3 struct A
5   template<int> void operator()() {}
6 };
8 template<typename> void foo()
10   A().template operator()<0>();