Douglas Gregor | 4258332 | 2011-11-16 05:16:30 +0000 | [diff] [blame] | 1 | // RUN: rm -rf %t |
Douglas Gregor | c13a34b | 2012-01-03 19:32:59 +0000 | [diff] [blame] | 2 | // RUN: %clang_cc1 -fmodules -x objective-c++ -fmodule-cache-path %t -fmodule-name=module_private_left -emit-module %S/Inputs/module.map |
| 3 | // RUN: %clang_cc1 -fmodules -x objective-c++ -fmodule-cache-path %t -fmodule-name=module_private_right -emit-module %S/Inputs/module.map |
| 4 | // RUN: %clang_cc1 -fmodules -x objective-c++ -fmodule-cache-path %t %s -verify |
| 5 | // FIXME: When we have a syntax for modules in C++, use that. |
Douglas Gregor | 8d267c5 | 2011-09-09 02:06:17 +0000 | [diff] [blame] | 6 | |
Ted Kremenek | 32ad2ee | 2012-03-01 22:07:04 +0000 | [diff] [blame] | 7 | @__experimental_modules_import module_private_left; |
| 8 | @__experimental_modules_import module_private_right; |
Douglas Gregor | 8d267c5 | 2011-09-09 02:06:17 +0000 | [diff] [blame] | 9 | |
| 10 | void test() { |
| 11 | int &ir = f0(1.0); // okay: f0() from 'right' is not visible |
| 12 | } |
| 13 | |
| 14 | int test_broken() { |
| 15 | HiddenStruct hidden; // expected-error{{use of undeclared identifier 'HiddenStruct'}} |
| 16 | |
| 17 | Integer i; // expected-error{{use of undeclared identifier 'Integer'}} |
| 18 | |
| 19 | int *ip = 0; |
| 20 | f1(ip); // expected-error{{use of undeclared identifier 'f1'}} |
| 21 | |
| 22 | vector<int> vec; // expected-error{{use of undeclared identifier 'vector'}} \ |
| 23 | // expected-error{{expected '(' for function-style cast or type construction}} \ |
| 24 | // expected-error{{use of undeclared identifier 'vec'}} |
| 25 | |
Douglas Gregor | 591dc84 | 2011-09-12 16:11:24 +0000 | [diff] [blame] | 26 | VisibleStruct vs; |
| 27 | vs.field = 0; // expected-error{{no member named 'field' in 'VisibleStruct'}} |
| 28 | vs.setField(1); // expected-error{{no member named 'setField' in 'VisibleStruct'}} |
| 29 | |
Douglas Gregor | 8d267c5 | 2011-09-09 02:06:17 +0000 | [diff] [blame] | 30 | return hidden_var; // expected-error{{use of undeclared identifier 'hidden_var'}} |
| 31 | } |
| 32 | |
Douglas Gregor | e761230 | 2011-09-09 19:05:14 +0000 | [diff] [blame] | 33 | // Check for private redeclarations of public entities. |
| 34 | template<typename T> |
Douglas Gregor | 2ccd89c | 2011-12-20 18:11:52 +0000 | [diff] [blame] | 35 | class public_class_template; |
Douglas Gregor | e761230 | 2011-09-09 19:05:14 +0000 | [diff] [blame] | 36 | |
| 37 | template<typename T> |
Douglas Gregor | 2ccd89c | 2011-12-20 18:11:52 +0000 | [diff] [blame] | 38 | __module_private__ class public_class_template; |
Douglas Gregor | e761230 | 2011-09-09 19:05:14 +0000 | [diff] [blame] | 39 | |
| 40 | |
Douglas Gregor | 2ccd89c | 2011-12-20 18:11:52 +0000 | [diff] [blame] | 41 | typedef int public_typedef; |
| 42 | typedef __module_private__ int public_typedef; |
Douglas Gregor | e761230 | 2011-09-09 19:05:14 +0000 | [diff] [blame] | 43 | |
Douglas Gregor | 2ccd89c | 2011-12-20 18:11:52 +0000 | [diff] [blame] | 44 | extern int public_var; |
| 45 | extern __module_private__ int public_var; |
Douglas Gregor | e761230 | 2011-09-09 19:05:14 +0000 | [diff] [blame] | 46 | |
Douglas Gregor | 2ccd89c | 2011-12-20 18:11:52 +0000 | [diff] [blame] | 47 | void public_func(); |
| 48 | __module_private__ void public_func(); |
Douglas Gregor | e761230 | 2011-09-09 19:05:14 +0000 | [diff] [blame] | 49 | |
| 50 | template<typename T> |
Douglas Gregor | 2ccd89c | 2011-12-20 18:11:52 +0000 | [diff] [blame] | 51 | void public_func_template(); |
Douglas Gregor | e761230 | 2011-09-09 19:05:14 +0000 | [diff] [blame] | 52 | template<typename T> |
Douglas Gregor | 2ccd89c | 2011-12-20 18:11:52 +0000 | [diff] [blame] | 53 | __module_private__ void public_func_template(); |
Douglas Gregor | e761230 | 2011-09-09 19:05:14 +0000 | [diff] [blame] | 54 | |
Douglas Gregor | 2ccd89c | 2011-12-20 18:11:52 +0000 | [diff] [blame] | 55 | struct public_struct; |
| 56 | __module_private__ struct public_struct; |
Douglas Gregor | e761230 | 2011-09-09 19:05:14 +0000 | [diff] [blame] | 57 | |
Douglas Gregor | d023aec | 2011-09-09 20:53:38 +0000 | [diff] [blame] | 58 | // Check for attempts to make specializations private |
| 59 | template<> __module_private__ void public_func_template<int>(); // expected-error{{template specialization cannot be declared __module_private__}} |
| 60 | |
| 61 | template<typename T> |
| 62 | struct public_class { |
| 63 | struct inner_struct; |
| 64 | static int static_var; |
Douglas Gregor | 6274d30 | 2011-09-09 21:14:29 +0000 | [diff] [blame] | 65 | |
Douglas Gregor | f3a762a | 2011-09-12 15:48:15 +0000 | [diff] [blame] | 66 | friend __module_private__ void public_func_friend(); |
| 67 | friend __module_private__ struct public_struct_friend; |
Douglas Gregor | d023aec | 2011-09-09 20:53:38 +0000 | [diff] [blame] | 68 | }; |
| 69 | |
| 70 | template<> __module_private__ struct public_class<int>::inner_struct { }; // expected-error{{member specialization cannot be declared __module_private__}} |
| 71 | template<> __module_private__ int public_class<int>::static_var = 17; // expected-error{{member specialization cannot be declared __module_private__}} |
| 72 | |
| 73 | template<> |
| 74 | __module_private__ struct public_class<float> { }; // expected-error{{template specialization cannot be declared __module_private__}} |
| 75 | |
| 76 | template<typename T> |
| 77 | __module_private__ struct public_class<T *> { }; // expected-error{{partial specialization cannot be declared __module_private__}} |
Douglas Gregor | e761230 | 2011-09-09 19:05:14 +0000 | [diff] [blame] | 78 | |
Douglas Gregor | e389585 | 2011-09-12 18:37:38 +0000 | [diff] [blame] | 79 | // Check for attempts to make parameters and variables with automatic |
| 80 | // storage module-private. |
| 81 | |
| 82 | void local_var_private(__module_private__ int param) { // expected-error{{parameter 'param' cannot be declared __module_private__}} |
| 83 | __module_private__ struct Local { int x, y; } local; //expected-error{{local variable 'local' cannot be declared __module_private__}} |
| 84 | |
| 85 | __module_private__ struct OtherLocal { int x; }; // expected-error{{local struct cannot be declared __module_private__}} |
| 86 | |
| 87 | typedef __module_private__ int local_typedef; // expected-error{{typedef 'local_typedef' cannot be declared __module_private__}} |
| 88 | } |
Douglas Gregor | fe522c2 | 2011-09-13 15:37:05 +0000 | [diff] [blame] | 89 | |
| 90 | // Check struct size |
| 91 | struct LikeVisibleStruct { |
| 92 | int field; |
| 93 | virtual void setField(int f); |
| 94 | }; |
| 95 | |
| 96 | int check_struct_size[sizeof(VisibleStruct) == sizeof(LikeVisibleStruct)? 1 : -1]; |