1// PR c++/25337
2
3template <typename T> T& MakeT();
4template <typename U, int N = sizeof (MakeT<U>().operator[](0))>
5struct helper{};
6template <typename U>
7static char is_here(helper<U>*);
8