Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / ext / instantiate2.C
bloba6292892b38309bd3d295cf0977bc74ce8989ff7
1 // Test that 'static template' instantiates statics.
2 // { dg-do compile }
3 // { dg-options "-fno-implicit-templates" }
5 template <class T> struct A {
6   static T t;
7 };
8 template <class T> T A<T>::t = 0;
9 static template struct A<int>;
11 // { dg-final { scan-assembler "\n_?_ZN1AIiE1tE(:|\n|\t)" { target { ! *-*-darwin* } } } }
12 // { dg-final { scan-assembler ".zerofill __DATA,__pu_bss2,__ZN1AIiE1tE" { target *-*-darwin* } } } 
13 void test_int() { A<int>::t = 42; }
15 // { dg-final { scan-assembler-not "\n_?_ZN1AIcE1tE(:|\n|\t)" } }
16 void test_char() { A<char>::t = 42; }