blob: 382fae8ed43bae4bc5709c5cd3b49188930892d5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// PR c++/11266
// We were expanding the same TARGET_EXPR twice, for placement new and
// delete.
void* operator new (__SIZE_TYPE__, void*) throw();
void operator delete (void*, void*) throw();
struct A { A(); };
void foo() { new(new A)A; }
|