]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/opt/static2.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / opt / static2.C
diff --git a/gcc/testsuite/g++.dg/opt/static2.C b/gcc/testsuite/g++.dg/opt/static2.C
deleted file mode 100644 (file)
index e2ecd13..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-// Origin: reichelt@igpm.rwth-aachen.de
-// PR 5571
-// { dg-options "-O2" }
-
-template <class T> struct A {};
-
-struct B
-{
-    static A<int> a;
-    void f() { a; }
-};
-
-A<int> B::a = A<int>();