This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/samples/cplbexam/iostream/ostream/destruct.cpp

13 lines
225 B
C++
Raw Normal View History

#include <iostream.h>
void *operator new( size_t, ostream *p ) { return( p ); }
void main( void ) {
char blob[512];
ostream *p = new ( blob ) ostream ( cout );
*p << "hi" << endl;
p->~ostream();
}