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>*);
8