summaryrefslogtreecommitdiff
path: root/regress/usr.bin/rtld/testlib/construct.cc
diff options
context:
space:
mode:
Diffstat (limited to 'regress/usr.bin/rtld/testlib/construct.cc')
-rw-r--r--regress/usr.bin/rtld/testlib/construct.cc25
1 files changed, 0 insertions, 25 deletions
diff --git a/regress/usr.bin/rtld/testlib/construct.cc b/regress/usr.bin/rtld/testlib/construct.cc
deleted file mode 100644
index 91602493093..00000000000
--- a/regress/usr.bin/rtld/testlib/construct.cc
+++ /dev/null
@@ -1,25 +0,0 @@
-// $NetBSD: construct.cc,v 1.2 2003/09/03 20:53:16 drochner Exp $
-
-// check constructor / destructor calls
-
-#include <iostream>
-
-using namespace std;
-
-class mist {
-public:
- mist(void);
- ~mist();
-};
-
-mist::mist(void)
-{
- cout << "constructor" << endl;
-}
-
-mist::~mist()
-{
- cout << "destructor" << endl;
-}
-
-static mist construct;