]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/special/conpr-3.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / special / conpr-3.C
diff --git a/gcc/testsuite/g++.dg/special/conpr-3.C b/gcc/testsuite/g++.dg/special/conpr-3.C
deleted file mode 100644 (file)
index c5fc235..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-/* { dg-do run } */
-
-#include <stdlib.h>
-
-class foo_t {
-    int x;
-    static int count;
-public:
-    foo_t(void) { x=++count; }
-    int get(void) { return x; }
-};
-
-int foo_t::count;
-
-extern foo_t foo1, foo2;
-
-int main(void) {
-
-    if ( (foo1.get() != 2) || (foo2.get() != 1) )
-        abort();
-    exit(0);
-}