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