blob: df770dac87d2a76c8c9ea6dc5ce4783461a37e0e [file] [log] [blame]
// On targets that don't support weak symbols, we require an explicit
// instantiation of arr.
// excess errors test - XFAIL *-*-aout *-*-coff *-*-hpux* alpha*-dec-osf* *-*-hms
template<class T>
struct A {
static T arr[5];
};
template <class T>
T A<T>::arr[5] = { 0, 1, 2, 3, 4 };
int main ()
{
return A<int>::arr[0];
}