OSDN Git Service

PR c++/9335
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / defarg7.C
1 // PR c++/25337
2
3 template <typename T> T& MakeT();
4 template <typename U, int N = sizeof (MakeT<U>().operator[](0))>
5 struct helper{};
6 template <typename U>
7 static char is_here(helper<U>*);