OSDN Git Service

PR c++/36435
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / operator4.C
1 // PR c++/17068
2
3 struct A
4 {
5   template<int> void operator()() {}
6 };
7
8 template<typename> void foo()
9 {
10   A().template operator()<0>();
11 }