8 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -Wno-dynamic-exception-spec -verify %s2 3void operator delete() throw(void*); // expected-error{{'operator delete' must have at least one parameter}}4void* allocate(int __n) {5 return ::operator new(__n);6}7 8