Training courses
Kernel and Embedded Linux
Bootlin training courses
1 2 3 4 5 6 7
// RUN: %clang_cc1 -fsyntax-only -verify %s void operator delete() throw(void*); // expected-error{{'operator delete' must have at least one parameter}} void* allocate(int __n) { return ::operator new(__n); }