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