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