blob: 42ab185760bb45bcf2cb4d479ca1d2767e291933 [file] [log] [blame]
Douglas Gregor84febf42011-11-16 05:16:30 +00001// RUN: rm -rf %t
Richard Smith47972af2015-06-16 00:08:24 +00002// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c++ -fmodules-cache-path=%t -fmodule-name=module_private_left -emit-module %S/Inputs/module.map
3// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c++ -fmodules-cache-path=%t -fmodule-name=module_private_right -emit-module %S/Inputs/module.map
4// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c++ -fmodules-cache-path=%t -I %S/Inputs %s -verify
Douglas Gregorda82e702012-01-03 19:32:59 +00005// FIXME: When we have a syntax for modules in C++, use that.
Douglas Gregor26701a42011-09-09 02:06:17 +00006
Douglas Gregorc50d4922012-12-11 22:11:52 +00007@import module_private_left;
8@import module_private_right;
Douglas Gregor26701a42011-09-09 02:06:17 +00009
10void test() {
11 int &ir = f0(1.0); // okay: f0() from 'right' is not visible
12}
13
14int test_broken() {
Richard Smith97135cc2015-11-12 22:19:45 +000015 HiddenStruct hidden; // expected-error{{unknown type name 'HiddenStruct'}}
Richard Smith7aed66b2012-08-23 20:19:14 +000016 Integer i; // expected-error{{unknown type name 'Integer'}}
Douglas Gregor26701a42011-09-09 02:06:17 +000017
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 Gregor3baa6702011-09-12 16:11:24 +000025 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 Gregor26701a42011-09-09 02:06:17 +000029 return hidden_var; // expected-error{{use of undeclared identifier 'hidden_var'}}
30}
31
Douglas Gregor2820e692011-09-09 19:05:14 +000032// Check for private redeclarations of public entities.
33template<typename T>
Douglas Gregor21823bf2011-12-20 18:11:52 +000034class public_class_template;
Douglas Gregor2820e692011-09-09 19:05:14 +000035
36template<typename T>
Douglas Gregor21823bf2011-12-20 18:11:52 +000037__module_private__ class public_class_template;
Douglas Gregor2820e692011-09-09 19:05:14 +000038
39
Douglas Gregor21823bf2011-12-20 18:11:52 +000040typedef int public_typedef;
41typedef __module_private__ int public_typedef;
Douglas Gregor2820e692011-09-09 19:05:14 +000042
Douglas Gregor21823bf2011-12-20 18:11:52 +000043extern int public_var;
44extern __module_private__ int public_var;
Douglas Gregor2820e692011-09-09 19:05:14 +000045
Douglas Gregor21823bf2011-12-20 18:11:52 +000046void public_func();
47__module_private__ void public_func();
Douglas Gregor2820e692011-09-09 19:05:14 +000048
49template<typename T>
Douglas Gregor21823bf2011-12-20 18:11:52 +000050void public_func_template();
Douglas Gregor2820e692011-09-09 19:05:14 +000051template<typename T>
Douglas Gregor21823bf2011-12-20 18:11:52 +000052__module_private__ void public_func_template();
Douglas Gregor2820e692011-09-09 19:05:14 +000053
Douglas Gregor21823bf2011-12-20 18:11:52 +000054struct public_struct;
55__module_private__ struct public_struct;
Douglas Gregor2820e692011-09-09 19:05:14 +000056
Douglas Gregor3c7cd6a2011-09-09 20:53:38 +000057// Check for attempts to make specializations private
58template<> __module_private__ void public_func_template<int>(); // expected-error{{template specialization cannot be declared __module_private__}}
59
60template<typename T>
61struct public_class {
62 struct inner_struct;
63 static int static_var;
Douglas Gregor64226422011-09-09 21:14:29 +000064
Douglas Gregorfc33bcf2011-09-12 15:48:15 +000065 friend __module_private__ void public_func_friend();
66 friend __module_private__ struct public_struct_friend;
Douglas Gregor3c7cd6a2011-09-09 20:53:38 +000067};
68
69template<> __module_private__ struct public_class<int>::inner_struct { }; // expected-error{{member specialization cannot be declared __module_private__}}
70template<> __module_private__ int public_class<int>::static_var = 17; // expected-error{{member specialization cannot be declared __module_private__}}
71
72template<>
73__module_private__ struct public_class<float> { }; // expected-error{{template specialization cannot be declared __module_private__}}
74
75template<typename T>
76__module_private__ struct public_class<T *> { }; // expected-error{{partial specialization cannot be declared __module_private__}}
Douglas Gregor2820e692011-09-09 19:05:14 +000077
Douglas Gregor41866812011-09-12 18:37:38 +000078// Check for attempts to make parameters and variables with automatic
79// storage module-private.
80
81void 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 Gregora057a582011-09-13 15:37:05 +000088
89// Check struct size
90struct LikeVisibleStruct {
91 int field;
92 virtual void setField(int f);
93};
94
95int check_struct_size[sizeof(VisibleStruct) == sizeof(LikeVisibleStruct)? 1 : -1];