e03a602a7d
From-SVN: r16629
19 lines
488 B
C
19 lines
488 B
C
// Build don't link:
|
|
// GROUPS passed friends
|
|
// friends file
|
|
// From: rwave!myersn%rwave.roguewave@cs.orst.edu (Nathan Myers)
|
|
// Date: Thu, 17 Dec 92 16:33 PST
|
|
// Subject: 2.3.2: friend decl of new confuses constructor
|
|
// Message-ID: <m0n2Vec-0000GrC@rwave.roguewave.com>
|
|
|
|
#include <stddef.h>
|
|
#include <new>
|
|
struct Foo {
|
|
friend void* operator new(size_t) throw (std::bad_alloc);
|
|
friend void operator delete(void*) throw ();
|
|
Foo();
|
|
~Foo();
|
|
};
|
|
Foo::Foo() { }
|
|
Foo::~Foo() { }
|