blob: 03f528cfbe78ddb5bd4b72e33a3f50711a6c84dd [file] [log] [blame]
// RUN: clang-cc -emit-llvm-only -verify %s
// PR5454
class X {static void * operator new(unsigned long size) throw(); X(int); };
int a(), b();
void b(int x)
{
new X(x ? a() : b());
}