#include <cstddef>

struct CL {
	void* operator new(size_t s, bool b = true);
	void operator delete(void* o, bool b = true);
};
void* CL::operator new(size_t s, bool b) { return ::operator new(s); }
void CL::operator delete(void* o, bool b) { return ::operator delete(o); }

auto aut = new (false) CL;

// Since ideone doesn't appear to allow you to specify compiler
// command line arguments, here's a dummy main() to let it link.
int main() {}