Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / template / defarg7.C
blob77506d4022865e4d76d3d6c88f47e1cee00df146
1 // PR c++/25337
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>*);