YouCompleteMe/cpp/llvm/tools/clang/test/SemaCXX/new-delete-predefined-decl-2.cpp
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07: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);
}