OSDN Git Service

PR java/43504
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / instantiate2.C
1 // Test that 'static template' instantiates statics.
2 // { dg-do compile }
3 // { dg-options "-fno-implicit-templates" }
4
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>;
10
11 // { dg-final { scan-assembler "\n_?_ZN1AIiE1tE(:|\n|\t)" } }
12 void test_int() { A<int>::t = 42; }
13
14 // { dg-final { scan-assembler-not "\n_?_ZN1AIcE1tE(:|\n|\t)" } }
15 void test_char() { A<char>::t = 42; }