summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/special/conpr-3b.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.dg/special/conpr-3b.C')
-rw-r--r--gcc/testsuite/g++.dg/special/conpr-3b.C11
1 files changed, 0 insertions, 11 deletions
diff --git a/gcc/testsuite/g++.dg/special/conpr-3b.C b/gcc/testsuite/g++.dg/special/conpr-3b.C
deleted file mode 100644
index b5efa0c35f6..00000000000
--- a/gcc/testsuite/g++.dg/special/conpr-3b.C
+++ /dev/null
@@ -1,11 +0,0 @@
-/* { dg-do run } */
-
-class foo_t {
- int x;
- static int count;
-public:
- foo_t(void) { x=++count; }
- int get(void) { return x; }
-};
-
-foo_t foo2 __attribute__((init_priority(5000)));