c++: fix 'unsigned typedef-name' extension [PR108099]
[official-gcc.git] / gcc / testsuite / g++.dg / ext / int128-8.C
blob07535a9820e90c87dbcf79b37fc6db64b4bde27c
1 // PR c++/108099
2 // { dg-do compile { target { c++11 && int128 } } }
3 // { dg-options "" }
5 using u128 = unsigned __int128_t;
6 using s128 = signed __int128_t;
7 template <typename T, T v> struct integral_constant {
8   static constexpr T value = v;
9 };
10 typedef integral_constant <bool, false> false_type;
11 typedef integral_constant <bool, true> true_type;
12 template <class T, class U>
13 struct is_same : false_type {};
14 template <class T>
15 struct is_same <T, T> : true_type {};
16 static_assert (is_same <__int128, s128>::value, "");
17 static_assert (is_same <signed __int128, s128>::value, "");
18 static_assert (is_same <__int128_t, s128>::value, "");
19 static_assert (is_same <unsigned __int128, u128>::value, "");
20 static_assert (is_same <__uint128_t, u128>::value, "");
21 static_assert (sizeof (s128) == sizeof (__int128), "");
22 static_assert (sizeof (u128) == sizeof (unsigned __int128), "");
23 static_assert (s128(-1) < 0, "");
24 static_assert (u128(-1) > 0, "");