// Test that 'static template' instantiates statics. // { dg-do compile } // { dg-options "-fno-implicit-templates" } template struct A { static T t; }; template T A::t = 0; static template struct A; // { dg-final { scan-assembler "\n_?_ZN1AIiE1tE(:|\n|\t)" { target { ! *-*-darwin* } } } } // { dg-final { scan-assembler ".zerofill __DATA,__pu_bss2,__ZN1AIiE1tE" { target *-*-darwin* } } } void test_int() { A::t = 42; } // { dg-final { scan-assembler-not "\n_?_ZN1AIcE1tE(:|\n|\t)" } } void test_char() { A::t = 42; }