mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-15 17:10:34 -04:00
8 lines
214 B
C++
8 lines
214 B
C++
// 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);
|
|
}
|
|
|