* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / sfinae32.C
blob97945c6bc860f7ca3199759fb831254337831964
1 // PR c++/51989
2 // { dg-do compile { target c++11 } }
4 template <typename T>
5 struct is_container
7   template <typename U, typename V = decltype(((U*)0)->begin())>
8   static char test(U* u);
10   template <typename U> static long test(...);
12   enum { value = sizeof test<T>(0) == 1 };
15 int main()
17   return is_container<void>::value;