mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
11 lines
203 B
C++
11 lines
203 B
C++
// RUN: %clang_cc1 -emit-llvm-only -verify %s
|
|
// PR5454
|
|
#include <stddef.h>
|
|
|
|
class X {static void * operator new(size_t size) throw(); X(int); };
|
|
int a(), b();
|
|
void b(int x)
|
|
{
|
|
new X(x ? a() : b());
|
|
}
|
|
|