aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/crash2.C
blob: e6cc965ff031029068ea65fc2990f8201e3cc7e5 (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
// { dg-options "" }

template <class EnumType>
class A
{
public:
  static const EnumType size = max; // { dg-error "" }
  int table[size];
};
template <class EnumType>
const EnumType A<EnumType>::size;
 
 
namespace N
{
enum E { max = 5 };
 
struct B
{
  A<E> a; // { dg-error "" }
};
 
}
 
int
main()
{
  N::B b;
 
  return 0;
}