]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/ext/instantiate2.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / ext / instantiate2.C
diff --git a/gcc/testsuite/g++.dg/ext/instantiate2.C b/gcc/testsuite/g++.dg/ext/instantiate2.C
deleted file mode 100644 (file)
index 97ef45c..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-// 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>;
-
-// { dg-final { scan-assembler "\n_?_ZN1AIiE1tE(:|\n|\t)" } }
-void test_int() { A<int>::t = 42; }
-
-// { dg-final { scan-assembler-not "\n_?_ZN1AIcE1tE(:|\n|\t)" } }
-void test_char() { A<char>::t = 42; }