blob: 9ad8c2894953b245e1cc896a6647a8707c8abc6c [file] [log] [blame]
// Test that 'static template' instantiates statics.
// { dg-do compile }
// { dg-options "-fno-implicit-templates" }
template <class T> struct A {
static T t;
};
template <class T> T A<T>::t = 0;
static template struct A<int>;
// LLVM LOCAL
// { dg-final { scan-assembler ".zerofill __DATA,__common,__ZN1AIiE1tE,4,2" }
void test_int() { A<int>::t = 42; }
// { dg-final { scan-assembler-not "\n_?_ZN1AIcE1tE(:|\n|\t)" } }
void test_char() { A<char>::t = 42; }