aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/special/conpr-1.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.dg/special/conpr-1.C')
-rw-r--r--gcc/testsuite/g++.dg/special/conpr-1.C18
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc/testsuite/g++.dg/special/conpr-1.C b/gcc/testsuite/g++.dg/special/conpr-1.C
deleted file mode 100644
index 8ab6bfee258..00000000000
--- a/gcc/testsuite/g++.dg/special/conpr-1.C
+++ /dev/null
@@ -1,18 +0,0 @@
-/* { dg-do run } */
-
-class foo_t {
- int x;
-public:
- foo_t(void) { x=1; }
- int get(void) { return x; }
-};
-
-static foo_t foo __attribute__((init_priority(5000)));
-
-int main(void) {
-
- if (foo.get())
- exit(0);
- else
- abort();
-}