aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/ext/underlying_type2.C
blob: 0e4519876d2fc9544b7c08186547f29e54c62ef4 (plain)
1
2
3
4
5
6
7
8
9
// { dg-do compile }

enum E1 { };
enum E2 { a = -1, b = 1 };
enum E3 { c = __LONG_MAX__ };

__underlying_type(E1) e1 = 0;
__underlying_type(E2) e2 = b;
__underlying_type(E3) e3 = __LONG_MAX__;