1 // { dg-do run { target c++11 } }
5 template<bool, typename _Tp = void> struct enable_if { };
6 template<typename _Tp> struct enable_if<true, _Tp> { typedef _Tp type; };
10 constexpr typename enable_if<sizeof...(c) == 2, int>::type operator""_t ()
16 constexpr typename enable_if<sizeof...(c) == 1, int>::type operator""_t ()
22 constexpr typename enable_if<sizeof...(c) >= 3, int>::type operator""_t ()
27 int operator""_t (long double)
36 assert (100000_t == 100);
37 assert (200.0_t == 200);