xref: /openbsd-src/regress/libexec/ld.so/initfirst/test2/prog1/prog1.C (revision f2da64fbbbf1b03f09f390ab01267c93dfd77c4c)
1 /*
2  * Public Domain 2011 Kurt Miller
3  *
4  * $OpenBSD: prog1.C,v 1.1 2011/11/29 04:36:15 kurt Exp $
5  */
6 
7 #include <iostream>
8 
9 class P
10 {
11 	public:
12 		P();
13 		~P();
14 };
15 
16 P::P()
17 {
18 	std::cout << "P";
19 }
20 
21 P::~P()
22 {
23 	std::cout << "p";
24 }
25 
26 P p;
27 
28 main()
29 {
30 	return 0;
31 }
32