summaryrefslogtreecommitdiff
path: root/libexec/ld.so/test/a.h
blob: c70443765fd003739f666ccab633e0097c2f66d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*	$OpenBSD: a.h,v 1.3 2001/01/28 19:34:29 niklas Exp $	*/

class B {
public:
	B();
	~B();
	int i;
};

class AA {
	B b;
	char *argstr;
public:
	AA(char *arg);
	~AA();
	int i;
};