13 lines
231 B
C++
13 lines
231 B
C++
|
// RUN: %clang_cc1 -emit-llvm-only -verify %s
|
||
|
// expected-no-diagnostics
|
||
|
// PR5454
|
||
|
#include <stddef.h>
|
||
|
|
||
|
struct X {static void * operator new(size_t size) throw(); X(int); };
|
||
|
int a(), b();
|
||
|
void b(int x)
|
||
|
{
|
||
|
new X(x ? a() : b());
|
||
|
}
|
||
|
|