* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / sfinae36.C
blob6597bc33736290c8c663113a7730271672122955
1 // PR c++/52363
2 // { dg-do compile { target c++11 } }
3 // { dg-options "-pedantic" }
5 #include <type_traits>
7 struct proxy
9   void operator=(int const&);
10   void operator=(int&&) const;
13 static_assert( !std::is_assignable<proxy, int>::value, "" );
14 static_assert( std::is_assignable<const proxy, int>::value, "" );