llvm-project/clang/test/SemaCXX/new-delete-predefined-decl-2.cpp
Douglas Gregor bcf0a47e7a When performing name lookup for the allocation or deallocation
operators, make sure that the implicitly-declared global new and
delete operators are always available. Fixes PR5904.

llvm-svn: 99382
2010-03-24 05:07:21 +00:00

14 lines
233 B
C++

// RUN: %clang_cc1 -fsyntax-only -verify %s
// RUN: %clang_cc1 -DQUALIFIED -fsyntax-only -verify %s
// PR5904
void f0(int *ptr) {
#ifndef QUALIFIED
operator delete(ptr);
#endif
}
void f1(int *ptr) {
::operator delete[](ptr);
}