repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Don't use .Xo/.Xc. Fix date format.
[netbsd-mini2440.git]
/
regress
/
usr.bin
/
rtld
/
testlib
/
construct.cc
blob
a669f31eae0a524ae9f23144267b164670cb27ed
1
// $NetBSD: construct.cc,v 1.1 2000/12/08 19:21:28 drochner Exp $
2
3
// check constructor / destructor calls
4
5
#include <iostream>
6
7
using namespace
std
;
8
9
class
mist
{
10
public
:
11
mist
(
void
);
12
~
mist
();
13
};
14
15
mist
::
mist
(
void
)
16
{
17
cout
<<
"constructor"
<<
endl
;
18
}
19
20
mist
::~
mist
()
21
{
22
cout
<<
"destructor"
<<
endl
;
23
}
24
25
static
mist construct
;