blob: 9213a0f20cbcad1d4ca4e41a55ae667add3bb13f [file] [log] [blame]
Douglas Gregor42583322011-11-16 05:16:30 +00001// RUN: rm -rf %t
Douglas Gregor953a61f2013-02-07 19:01:24 +00002// RUN: %clang_cc1 -fmodules -x objective-c++ -fmodules-cache-path=%t -fmodule-name=module_private_left -emit-module %S/Inputs/module.map
3// RUN: %clang_cc1 -fmodules -x objective-c++ -fmodules-cache-path=%t -fmodule-name=module_private_right -emit-module %S/Inputs/module.map
Stephen Hines651f13c2014-04-23 16:59:28 -07004// RUN: %clang_cc1 -fmodules -x objective-c++ -fmodules-cache-path=%t -I %S/Inputs %s -verify
Douglas Gregorc13a34b2012-01-03 19:32:59 +00005// FIXME: When we have a syntax for modules in C++, use that.
Douglas Gregor8d267c52011-09-09 02:06:17 +00006
Douglas Gregor1b257af2012-12-11 22:11:52 +00007@import module_private_left;
8@import module_private_right;
Douglas Gregor8d267c52011-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 Smith40b2e192012-08-23 20:19:14 +000015 HiddenStruct hidden; // \
16 // expected-error{{must use 'struct' tag to refer to type 'HiddenStruct' in this scope}} \
17 // expected-error{{definition of 'struct HiddenStruct' must be imported}}
Andy Gibbsb42f2002013-04-17 08:06:46 +000018 // expected-note@Inputs/module_private_left.h:3 {{previous definition is here}}
Douglas Gregor8d267c52011-09-09 02:06:17 +000019
Richard Smith40b2e192012-08-23 20:19:14 +000020 Integer i; // expected-error{{unknown type name 'Integer'}}
Douglas Gregor8d267c52011-09-09 02:06:17 +000021
22 int *ip = 0;
23 f1(ip); // expected-error{{use of undeclared identifier 'f1'}}
24
25 vector<int> vec; // expected-error{{use of undeclared identifier 'vector'}} \
26 // expected-error{{expected '(' for function-style cast or type construction}} \
27 // expected-error{{use of undeclared identifier 'vec'}}
28
Douglas Gregor591dc842011-09-12 16:11:24 +000029 VisibleStruct vs;
30 vs.field = 0; // expected-error{{no member named 'field' in 'VisibleStruct'}}
31 vs.setField(1); // expected-error{{no member named 'setField' in 'VisibleStruct'}}
32
Douglas Gregor8d267c52011-09-09 02:06:17 +000033 return hidden_var; // expected-error{{use of undeclared identifier 'hidden_var'}}
34}
35
Douglas Gregore7612302011-09-09 19:05:14 +000036// Check for private redeclarations of public entities.
37template<typename T>
Douglas Gregor2ccd89c2011-12-20 18:11:52 +000038class public_class_template;
Douglas Gregore7612302011-09-09 19:05:14 +000039
40template<typename T>
Douglas Gregor2ccd89c2011-12-20 18:11:52 +000041__module_private__ class public_class_template;
Douglas Gregore7612302011-09-09 19:05:14 +000042
43
Douglas Gregor2ccd89c2011-12-20 18:11:52 +000044typedef int public_typedef;
45typedef __module_private__ int public_typedef;
Douglas Gregore7612302011-09-09 19:05:14 +000046
Douglas Gregor2ccd89c2011-12-20 18:11:52 +000047extern int public_var;
48extern __module_private__ int public_var;
Douglas Gregore7612302011-09-09 19:05:14 +000049
Douglas Gregor2ccd89c2011-12-20 18:11:52 +000050void public_func();
51__module_private__ void public_func();
Douglas Gregore7612302011-09-09 19:05:14 +000052
53template<typename T>
Douglas Gregor2ccd89c2011-12-20 18:11:52 +000054void public_func_template();
Douglas Gregore7612302011-09-09 19:05:14 +000055template<typename T>
Douglas Gregor2ccd89c2011-12-20 18:11:52 +000056__module_private__ void public_func_template();
Douglas Gregore7612302011-09-09 19:05:14 +000057
Douglas Gregor2ccd89c2011-12-20 18:11:52 +000058struct public_struct;
59__module_private__ struct public_struct;
Douglas Gregore7612302011-09-09 19:05:14 +000060
Douglas Gregord023aec2011-09-09 20:53:38 +000061// Check for attempts to make specializations private
62template<> __module_private__ void public_func_template<int>(); // expected-error{{template specialization cannot be declared __module_private__}}
63
64template<typename T>
65struct public_class {
66 struct inner_struct;
67 static int static_var;
Douglas Gregor6274d302011-09-09 21:14:29 +000068
Douglas Gregorf3a762a2011-09-12 15:48:15 +000069 friend __module_private__ void public_func_friend();
70 friend __module_private__ struct public_struct_friend;
Douglas Gregord023aec2011-09-09 20:53:38 +000071};
72
73template<> __module_private__ struct public_class<int>::inner_struct { }; // expected-error{{member specialization cannot be declared __module_private__}}
74template<> __module_private__ int public_class<int>::static_var = 17; // expected-error{{member specialization cannot be declared __module_private__}}
75
76template<>
77__module_private__ struct public_class<float> { }; // expected-error{{template specialization cannot be declared __module_private__}}
78
79template<typename T>
80__module_private__ struct public_class<T *> { }; // expected-error{{partial specialization cannot be declared __module_private__}}
Douglas Gregore7612302011-09-09 19:05:14 +000081
Douglas Gregore3895852011-09-12 18:37:38 +000082// Check for attempts to make parameters and variables with automatic
83// storage module-private.
84
85void local_var_private(__module_private__ int param) { // expected-error{{parameter 'param' cannot be declared __module_private__}}
86 __module_private__ struct Local { int x, y; } local; //expected-error{{local variable 'local' cannot be declared __module_private__}}
87
88 __module_private__ struct OtherLocal { int x; }; // expected-error{{local struct cannot be declared __module_private__}}
89
90 typedef __module_private__ int local_typedef; // expected-error{{typedef 'local_typedef' cannot be declared __module_private__}}
91}
Douglas Gregorfe522c22011-09-13 15:37:05 +000092
93// Check struct size
94struct LikeVisibleStruct {
95 int field;
96 virtual void setField(int f);
97};
98
99int check_struct_size[sizeof(VisibleStruct) == sizeof(LikeVisibleStruct)? 1 : -1];