blob: bb26c8f92b5d62c91a72478be4de261f857b237d (
plain)
1
2
3
4
5
6
7
8
9
|
/* PR c++/31517. This used to ICE. */
/* { dg-do compile } */
template<typename> struct A
{
static const int i=0;
};
template<typename T> const int A<T>::i = 0=0; /* { dg-error "duplicate initialization" } */
|