annotate gcc/testsuite/g++.dg/ext/underlying_type4.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 // { dg-do compile }
kono
parents:
diff changeset
2
kono
parents:
diff changeset
3 #include <tr1/type_traits>
kono
parents:
diff changeset
4
kono
parents:
diff changeset
5 using namespace std::tr1;
kono
parents:
diff changeset
6
kono
parents:
diff changeset
7 enum E1 { };
kono
parents:
diff changeset
8 enum E2 { a = -1, b = 1 };
kono
parents:
diff changeset
9 enum E3 { c = __LONG_MAX__ };
kono
parents:
diff changeset
10
kono
parents:
diff changeset
11 typedef __underlying_type(E1) UTE1;
kono
parents:
diff changeset
12 typedef __underlying_type(E2) UTE2;
kono
parents:
diff changeset
13 typedef __underlying_type(E3) UTE3;
kono
parents:
diff changeset
14
kono
parents:
diff changeset
15 template<typename T>
kono
parents:
diff changeset
16 struct underlying_type
kono
parents:
diff changeset
17 { typedef __underlying_type(T) type; };
kono
parents:
diff changeset
18
kono
parents:
diff changeset
19 int test1[is_same<underlying_type<E1>::type, UTE1>::value ? 1 : -1];
kono
parents:
diff changeset
20 int test2[is_same<underlying_type<E2>::type, UTE2>::value ? 1 : -1];
kono
parents:
diff changeset
21 int test3[is_same<underlying_type<E3>::type, UTE3>::value ? 1 : -1];
kono
parents:
diff changeset
22
kono
parents:
diff changeset
23 int test4[is_integral<underlying_type<E1>::type>::value ? 1 : -1];
kono
parents:
diff changeset
24 int test5[is_integral<underlying_type<E2>::type>::value ? 1 : -1];
kono
parents:
diff changeset
25 int test6[is_integral<underlying_type<E3>::type>::value ? 1 : -1];