view gcc/testsuite/g++.dg/template/crash2.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

// { dg-options "" }

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