f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
21 lines
501 B
C++
21 lines
501 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 dummy;
|
|
@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;
|
|
}
|
|
|
|
void friend_1(HasFriends s) {
|
|
s.private_thing();
|
|
}
|
|
void test_friends(HasFriends s) {
|
|
friend_1(s);
|
|
friend_2(s);
|
|
}
|