blob: dd236e1204a9812b33d365ff54f306096386eccf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// { dg-do assemble }
#include <typeinfo>
struct GcspFlags
{
enum Enum
{
OffYes,
OffNo,
Root
};
static char const* name(Enum flag);
template<Enum GCSP_FLAG>
struct btmFlag
{
static Enum const f=OffNo;
};
};
template<>
struct
GcspFlags::btmFlag<GcspFlags::OffYes>
{
static GcspFlags::Enum const f=GcspFlags::OffYes;
};
int
main ()
{
GcspFlags::btmFlag<GcspFlags::OffYes> f;
const std::type_info& ti = typeid (f);
return 0;
}
|