Files
clang-p2996/clang/test/Modules/cxx-decls.cpp
Richard Smith 42713d763f If an unimported submodule of an imported module contains a declaration of a
global allocation or deallocation function, that should not cause that global
allocation or deallocation function to become unavailable.

llvm-svn: 186270
2013-07-14 02:01:48 +00:00

13 lines
366 B
C++

// RUN: rm -rf %t
// RUN: %clang_cc1 -x objective-c++ -fmodules -fmodules-cache-path=%t -I %S/Inputs %s -verify -std=c++11
// expected-no-diagnostics
@import cxx_decls.imported;
void test_delete(int *p) {
// We can call the normal global deallocation function even though it has only
// ever been explicitly declared in an unimported submodule.
delete p;
}