blob: f01c4e836a30f285c7ca34c6b0db456134fd62e3 [file] [log] [blame]
Richard Trieue7f7ed22017-02-22 01:11:25 +00001// Clear and create directories
2// RUN: rm -rf %t
3// RUN: mkdir %t
4// RUN: mkdir %t/cache
5// RUN: mkdir %t/Inputs
6
7// Build first header file
8// RUN: echo "#define FIRST" >> %t/Inputs/first.h
9// RUN: cat %s >> %t/Inputs/first.h
10
11// Build second header file
12// RUN: echo "#define SECOND" >> %t/Inputs/second.h
13// RUN: cat %s >> %t/Inputs/second.h
14
15// Build module map file
16// RUN: echo "module FirstModule {" >> %t/Inputs/module.map
17// RUN: echo " header \"first.h\"" >> %t/Inputs/module.map
18// RUN: echo "}" >> %t/Inputs/module.map
19// RUN: echo "module SecondModule {" >> %t/Inputs/module.map
20// RUN: echo " header \"second.h\"" >> %t/Inputs/module.map
21// RUN: echo "}" >> %t/Inputs/module.map
22
23// Run test
Richard Trieu639d7b62017-02-22 22:22:42 +000024// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t/cache -x c++ -I%t/Inputs -verify %s -std=c++1z
Richard Trieue7f7ed22017-02-22 01:11:25 +000025
26#if !defined(FIRST) && !defined(SECOND)
27#include "first.h"
28#include "second.h"
29#endif
30
31namespace AccessSpecifiers {
32#if defined(FIRST)
33struct S1 {
34};
35#elif defined(SECOND)
36struct S1 {
37 private:
38};
39#else
40S1 s1;
41// expected-error@second.h:* {{'AccessSpecifiers::S1' has different definitions in different modules; first difference is definition in module 'SecondModule' found private access specifier}}
42// expected-note@first.h:* {{but in 'FirstModule' found end of class}}
43#endif
44
45#if defined(FIRST)
46struct S2 {
47 public:
48};
49#elif defined(SECOND)
50struct S2 {
51 protected:
52};
53#else
54S2 s2;
55// expected-error@second.h:* {{'AccessSpecifiers::S2' has different definitions in different modules; first difference is definition in module 'SecondModule' found protected access specifier}}
56// expected-note@first.h:* {{but in 'FirstModule' found public access specifier}}
57#endif
58} // namespace AccessSpecifiers
59
Richard Trieu639d7b62017-02-22 22:22:42 +000060namespace StaticAssert {
61#if defined(FIRST)
62struct S1 {
63 static_assert(1 == 1, "First");
64};
65#elif defined(SECOND)
66struct S1 {
67 static_assert(1 == 1, "Second");
68};
69#else
70S1 s1;
71// expected-error@second.h:* {{'StaticAssert::S1' has different definitions in different modules; first difference is definition in module 'SecondModule' found static assert with message}}
72// expected-note@first.h:* {{but in 'FirstModule' found static assert with different message}}
73#endif
74
75#if defined(FIRST)
76struct S2 {
77 static_assert(2 == 2, "Message");
78};
79#elif defined(SECOND)
80struct S2 {
81 static_assert(2 == 2);
82};
83#else
84S2 s2;
85// expected-error@second.h:* {{'StaticAssert::S2' has different definitions in different modules; first difference is definition in module 'SecondModule' found static assert with no message}}
86// expected-note@first.h:* {{but in 'FirstModule' found static assert with message}}
87#endif
88
89#if defined(FIRST)
90struct S3 {
91 static_assert(3 == 3, "Message");
92};
93#elif defined(SECOND)
94struct S3 {
95 static_assert(3 != 4, "Message");
96};
97#else
98S3 s3;
99// expected-error@second.h:* {{'StaticAssert::S3' has different definitions in different modules; first difference is definition in module 'SecondModule' found static assert with condition}}
100// expected-note@first.h:* {{but in 'FirstModule' found static assert with different condition}}
101#endif
102
103#if defined(FIRST)
104struct S4 {
105 static_assert(4 == 4, "Message");
106};
107#elif defined(SECOND)
108struct S4 {
109 public:
110};
111#else
112S4 s4;
113// expected-error@second.h:* {{'StaticAssert::S4' has different definitions in different modules; first difference is definition in module 'SecondModule' found public access specifier}}
114// expected-note@first.h:* {{but in 'FirstModule' found static assert}}
115#endif
116}
117
Richard Trieud0786092017-02-23 00:23:01 +0000118namespace Field {
119#if defined(FIRST)
120struct S1 {
121 int x;
122 private:
123 int y;
124};
125#elif defined(SECOND)
126struct S1 {
127 int x;
128 int y;
129};
130#else
131S1 s1;
132// expected-error@second.h:* {{'Field::S1' has different definitions in different modules; first difference is definition in module 'SecondModule' found field}}
133// expected-note@first.h:* {{but in 'FirstModule' found private access specifier}}
134#endif
135
136#if defined(FIRST)
137struct S2 {
138 int x;
139 int y;
140};
141#elif defined(SECOND)
142struct S2 {
143 int y;
144 int x;
145};
146#else
147S2 s2;
148// expected-error@second.h:* {{'Field::S2' has different definitions in different modules; first difference is definition in module 'SecondModule' found field 'y'}}
149// expected-note@first.h:* {{but in 'FirstModule' found field 'x'}}
150#endif
Richard Trieubcaaf962017-02-23 03:25:57 +0000151
152#if defined(FIRST)
153struct S3 {
154 double x;
155};
156#elif defined(SECOND)
157struct S3 {
158 int x;
159};
160#else
161S3 s3;
162// expected-error@first.h:* {{'Field::S3::x' from module 'FirstModule' is not present in definition of 'Field::S3' in module 'SecondModule'}}
163// expected-note@second.h:* {{declaration of 'x' does not match}}
164#endif
Richard Trieu8459ddf2017-02-24 02:59:12 +0000165
166#if defined(FIRST)
167typedef int A;
168struct S4 {
169 A x;
170};
171
172struct S5 {
173 A x;
174};
175#elif defined(SECOND)
176typedef int B;
177struct S4 {
178 B x;
179};
180
181struct S5 {
182 int x;
183};
184#else
185S4 s4;
Alex Lorenz76377dc2017-03-10 15:04:58 +0000186// expected-error@second.h:* {{'Field::S4' has different definitions in different modules; first difference is definition in module 'SecondModule' found field 'x' with type 'Field::B' (aka 'int')}}
187// expected-note@first.h:* {{but in 'FirstModule' found field 'x' with type 'Field::A' (aka 'int')}}
Richard Trieu8459ddf2017-02-24 02:59:12 +0000188
189S5 s5;
190// expected-error@second.h:* {{'Field::S5' has different definitions in different modules; first difference is definition in module 'SecondModule' found field 'x' with type 'int'}}
Alex Lorenz76377dc2017-03-10 15:04:58 +0000191// expected-note@first.h:* {{but in 'FirstModule' found field 'x' with type 'Field::A' (aka 'int')}}
Richard Trieu8459ddf2017-02-24 02:59:12 +0000192#endif
193
Richard Trieu93772fc2017-02-24 20:59:28 +0000194#if defined(FIRST)
195struct S6 {
196 unsigned x;
197};
198#elif defined(SECOND)
199struct S6 {
200 unsigned x : 1;
201};
202#else
203S6 s6;
204// expected-error@second.h:* {{'Field::S6' has different definitions in different modules; first difference is definition in module 'SecondModule' found bitfield 'x'}}
205// expected-note@first.h:* {{but in 'FirstModule' found non-bitfield 'x'}}
206#endif
207
208#if defined(FIRST)
209struct S7 {
210 unsigned x : 2;
211};
212#elif defined(SECOND)
213struct S7 {
214 unsigned x : 1;
215};
216#else
217S7 s7;
218// expected-error@second.h:* {{'Field::S7' has different definitions in different modules; first difference is definition in module 'SecondModule' found bitfield 'x' with one width expression}}
219// expected-note@first.h:* {{but in 'FirstModule' found bitfield 'x' with different width expression}}
220#endif
221
222#if defined(FIRST)
223struct S8 {
224 unsigned x : 2;
225};
226#elif defined(SECOND)
227struct S8 {
228 unsigned x : 1 + 1;
229};
230#else
231S8 s8;
232// expected-error@second.h:* {{'Field::S8' has different definitions in different modules; first difference is definition in module 'SecondModule' found bitfield 'x' with one width expression}}
233// expected-note@first.h:* {{but in 'FirstModule' found bitfield 'x' with different width expression}}
234#endif
Richard Trieu8459ddf2017-02-24 02:59:12 +0000235
Richard Trieu8d543e22017-02-24 23:35:37 +0000236#if defined(FIRST)
237struct S9 {
238 mutable int x;
239};
240#elif defined(SECOND)
241struct S9 {
242 int x;
243};
244#else
245S9 s9;
246// expected-error@second.h:* {{'Field::S9' has different definitions in different modules; first difference is definition in module 'SecondModule' found non-mutable field 'x'}}
247// expected-note@first.h:* {{but in 'FirstModule' found mutable field 'x'}}
248#endif
249
250#if defined(FIRST)
251struct S10 {
252 unsigned x = 5;
253};
254#elif defined(SECOND)
255struct S10 {
256 unsigned x;
257};
258#else
259S10 s10;
260// expected-error@second.h:* {{'Field::S10' has different definitions in different modules; first difference is definition in module 'SecondModule' found field 'x' with no initalizer}}
261// expected-note@first.h:* {{but in 'FirstModule' found field 'x' with an initializer}}
262#endif
263
264#if defined(FIRST)
265struct S11 {
266 unsigned x = 5;
267};
268#elif defined(SECOND)
269struct S11 {
270 unsigned x = 7;
271};
272#else
273S11 s11;
274// expected-error@second.h:* {{'Field::S11' has different definitions in different modules; first difference is definition in module 'SecondModule' found field 'x' with an initializer}}
275// expected-note@first.h:* {{but in 'FirstModule' found field 'x' with a different initializer}}
276#endif
277
Richard Trieu02552272017-05-02 23:58:52 +0000278#if defined(FIRST)
279struct S12 {
280 unsigned x[5];
281};
282#elif defined(SECOND)
283struct S12 {
284 unsigned x[7];
285};
286#else
287S12 s12;
288// expected-error@first.h:* {{'Field::S12::x' from module 'FirstModule' is not present in definition of 'Field::S12' in module 'SecondModule'}}
289// expected-note@second.h:* {{declaration of 'x' does not match}}
290#endif
291
292#if defined(FIRST)
293struct S13 {
294 unsigned x[7];
295};
296#elif defined(SECOND)
297struct S13 {
298 double x[7];
299};
300#else
301S13 s13;
302// expected-error@first.h:* {{'Field::S13::x' from module 'FirstModule' is not present in definition of 'Field::S13' in module 'SecondModule'}}
303// expected-note@second.h:* {{declaration of 'x' does not match}}
304#endif
Richard Trieud0786092017-02-23 00:23:01 +0000305} // namespace Field
306
Richard Trieu48143742017-02-28 21:24:38 +0000307namespace Method {
308#if defined(FIRST)
309struct S1 {
310 void A() {}
311};
312#elif defined(SECOND)
313struct S1 {
314 private:
315 void A() {}
316};
317#else
318S1 s1;
319// expected-error@second.h:* {{'Method::S1' has different definitions in different modules; first difference is definition in module 'SecondModule' found private access specifier}}
320// expected-note@first.h:* {{but in 'FirstModule' found method}}
321#endif
322
323#if defined(FIRST)
324struct S2 {
325 void A() {}
326 void B() {}
327};
328#elif defined(SECOND)
329struct S2 {
330 void B() {}
331 void A() {}
332};
333#else
334S2 s2;
335// expected-error@second.h:* {{'Method::S2' has different definitions in different modules; first difference is definition in module 'SecondModule' found method 'B'}}
336// expected-note@first.h:* {{but in 'FirstModule' found method 'A'}}
337#endif
Richard Trieu583e2c12017-03-04 00:08:58 +0000338
339#if defined(FIRST)
340struct S3 {
341 static void A() {}
Richard Trieuf4b54fe2017-03-04 03:04:15 +0000342 void A(int) {}
Richard Trieu583e2c12017-03-04 00:08:58 +0000343};
344#elif defined(SECOND)
345struct S3 {
Richard Trieuf4b54fe2017-03-04 03:04:15 +0000346 void A(int) {}
347 static void A() {}
Richard Trieu583e2c12017-03-04 00:08:58 +0000348};
349#else
350S3 s3;
351// expected-error@second.h:* {{'Method::S3' has different definitions in different modules; first difference is definition in module 'SecondModule' found method 'A' is not static}}
352// expected-note@first.h:* {{but in 'FirstModule' found method 'A' is static}}
353#endif
354
355#if defined(FIRST)
356struct S4 {
357 virtual void A() {}
358 void B() {}
359};
360#elif defined(SECOND)
361struct S4 {
362 void A() {}
363 virtual void B() {}
364};
365#else
366S4 s4;
367// expected-error@second.h:* {{'Method::S4' has different definitions in different modules; first difference is definition in module 'SecondModule' found method 'A' is not virtual}}
368// expected-note@first.h:* {{but in 'FirstModule' found method 'A' is virtual}}
369#endif
370
371#if defined(FIRST)
372struct S5 {
373 virtual void A() = 0;
374 virtual void B() {};
375};
376#elif defined(SECOND)
377struct S5 {
378 virtual void A() {}
379 virtual void B() = 0;
380};
381#else
382S5 *s5;
383// expected-error@second.h:* {{'Method::S5' has different definitions in different modules; first difference is definition in module 'SecondModule' found method 'A' is virtual}}
384// expected-note@first.h:* {{but in 'FirstModule' found method 'A' is pure virtual}}
385#endif
386
387#if defined(FIRST)
388struct S6 {
389 inline void A() {}
390};
391#elif defined(SECOND)
392struct S6 {
393 void A() {}
394};
395#else
396S6 s6;
397// expected-error@second.h:* {{'Method::S6' has different definitions in different modules; first difference is definition in module 'SecondModule' found method 'A' is not inline}}
398// expected-note@first.h:* {{but in 'FirstModule' found method 'A' is inline}}
399#endif
400
401#if defined(FIRST)
402struct S7 {
403 void A() volatile {}
404 void A() {}
405};
406#elif defined(SECOND)
407struct S7 {
408 void A() {}
409 void A() volatile {}
410};
411#else
412S7 s7;
413// expected-error@second.h:* {{'Method::S7' has different definitions in different modules; first difference is definition in module 'SecondModule' found method 'A' is not volatile}}
414// expected-note@first.h:* {{but in 'FirstModule' found method 'A' is volatile}}
415#endif
416
417#if defined(FIRST)
418struct S8 {
419 void A() const {}
420 void A() {}
421};
422#elif defined(SECOND)
423struct S8 {
424 void A() {}
425 void A() const {}
426};
427#else
428S8 s8;
429// expected-error@second.h:* {{'Method::S8' has different definitions in different modules; first difference is definition in module 'SecondModule' found method 'A' is not const}}
430// expected-note@first.h:* {{but in 'FirstModule' found method 'A' is const}}
431#endif
432
Richard Trieu02552272017-05-02 23:58:52 +0000433#if defined(FIRST)
434struct S9 {
435 void A(int x) {}
436 void A(int x, int y) {}
437};
438#elif defined(SECOND)
439struct S9 {
440 void A(int x, int y) {}
441 void A(int x) {}
442};
443#else
444S9 s9;
445// expected-error@second.h:* {{'Method::S9' has different definitions in different modules; first difference is definition in module 'SecondModule' found method 'A' that has 2 parameters}}
446// expected-note@first.h:* {{but in 'FirstModule' found method 'A' that has 1 parameter}}
447#endif
448
449#if defined(FIRST)
450struct S10 {
451 void A(int x) {}
452 void A(float x) {}
453};
454#elif defined(SECOND)
455struct S10 {
456 void A(float x) {}
457 void A(int x) {}
458};
459#else
460S10 s10;
461// expected-error@second.h:* {{'Method::S10' has different definitions in different modules; first difference is definition in module 'SecondModule' found method 'A' with 1st parameter of type 'float'}}
462// expected-note@first.h:* {{but in 'FirstModule' found method 'A' with 1st parameter of type 'int'}}
463#endif
464
465#if defined(FIRST)
466struct S11 {
467 void A(int x) {}
468};
469#elif defined(SECOND)
470struct S11 {
471 void A(int y) {}
472};
473#else
474S11 s11;
475// expected-error@second.h:* {{'Method::S11' has different definitions in different modules; first difference is definition in module 'SecondModule' found method 'A' with 1st parameter named 'y'}}
476// expected-note@first.h:* {{but in 'FirstModule' found method 'A' with 1st parameter named 'x'}}
477#endif
478
479#if defined(FIRST)
480struct S12 {
481 void A(int x) {}
482};
483#elif defined(SECOND)
484struct S12 {
485 void A(int x = 1) {}
486};
487#else
488S12 s12;
Richard Trieu6e13ff32017-06-16 02:44:29 +0000489// expected-error@second.h:* {{'Method::S12' has different definitions in different modules; first difference is definition in module 'SecondModule' found method 'A' with 1st parameter without a default argument}}
490// expected-note@first.h:* {{but in 'FirstModule' found method 'A' with 1st parameter with a default argument}}
Richard Trieu02552272017-05-02 23:58:52 +0000491#endif
492
493#if defined(FIRST)
494struct S13 {
495 void A(int x = 1 + 0) {}
496};
497#elif defined(SECOND)
498struct S13 {
499 void A(int x = 1) {}
500};
501#else
502S13 s13;
Richard Trieu6e13ff32017-06-16 02:44:29 +0000503// expected-error@second.h:* {{'Method::S13' has different definitions in different modules; first difference is definition in module 'SecondModule' found method 'A' with 1st parameter with a default argument}}
504// expected-note@first.h:* {{but in 'FirstModule' found method 'A' with 1st parameter with a different default argument}}
Richard Trieu02552272017-05-02 23:58:52 +0000505#endif
506
507#if defined(FIRST)
508struct S14 {
509 void A(int x[2]) {}
510};
511#elif defined(SECOND)
512struct S14 {
513 void A(int x[3]) {}
514};
515#else
516S14 s14;
517// expected-error@second.h:* {{'Method::S14' has different definitions in different modules; first difference is definition in module 'SecondModule' found method 'A' with 1st parameter of type 'int *' decayed from 'int [3]'}}
518// expected-note@first.h:* {{but in 'FirstModule' found method 'A' with 1st parameter of type 'int *' decayed from 'int [2]'}}
519#endif
Richard Trieu48143742017-02-28 21:24:38 +0000520} // namespace Method
521
Richard Trieue7f7ed22017-02-22 01:11:25 +0000522// Naive parsing of AST can lead to cycles in processing. Ensure
523// self-references don't trigger an endless cycles of AST node processing.
524namespace SelfReference {
525#if defined(FIRST)
526template <template <int> class T> class Wrapper {};
527
528template <int N> class S {
529 S(Wrapper<::SelfReference::S> &Ref) {}
530};
531
532struct Xx {
533 struct Yy {
534 };
535};
536
537Xx::Xx::Xx::Yy yy;
538
539namespace NNS {
540template <typename> struct Foo;
541template <template <class> class T = NNS::Foo>
542struct NestedNamespaceSpecifier {};
543}
544#endif
545} // namespace SelfReference
546
Richard Trieu33562c22017-03-08 00:13:19 +0000547namespace TypeDef {
548#if defined(FIRST)
549struct S1 {
550 typedef int a;
551};
552#elif defined(SECOND)
553struct S1 {
554 typedef double a;
555};
556#else
557S1 s1;
558// expected-error@first.h:* {{'TypeDef::S1::a' from module 'FirstModule' is not present in definition of 'TypeDef::S1' in module 'SecondModule'}}
559// expected-note@second.h:* {{declaration of 'a' does not match}}
560#endif
561
562#if defined(FIRST)
563struct S2 {
564 typedef int a;
565};
566#elif defined(SECOND)
567struct S2 {
568 typedef int b;
569};
570#else
571S2 s2;
572// expected-error@first.h:* {{'TypeDef::S2::a' from module 'FirstModule' is not present in definition of 'TypeDef::S2' in module 'SecondModule'}}
573// expected-note@second.h:* {{definition has no member 'a'}}
574#endif
575
576#if defined(FIRST)
577typedef int T;
578struct S3 {
579 typedef T a;
580};
581#elif defined(SECOND)
582typedef double T;
583struct S3 {
584 typedef T a;
585};
586#else
587S3 s3;
588// expected-error@first.h:* {{'TypeDef::S3::a' from module 'FirstModule' is not present in definition of 'TypeDef::S3' in module 'SecondModule'}}
589// expected-note@second.h:* {{declaration of 'a' does not match}}
590#endif
Richard Trieu11d566a2017-06-12 21:58:22 +0000591
592#if defined(FIRST)
593struct S4 {
594 typedef int a;
595 typedef int b;
596};
597#elif defined(SECOND)
598struct S4 {
599 typedef int b;
600 typedef int a;
601};
602#else
603S4 s4;
604// expected-error@second.h:* {{'TypeDef::S4' has different definitions in different modules; first difference is definition in module 'SecondModule' found typedef name 'b'}}
605// expected-note@first.h:* {{but in 'FirstModule' found typedef name 'a'}}
606#endif
607
608#if defined(FIRST)
609struct S5 {
610 typedef int a;
611 typedef int b;
612 int x;
613};
614#elif defined(SECOND)
615struct S5 {
616 int x;
617 typedef int b;
618 typedef int a;
619};
620#else
621S5 s5;
622// expected-error@second.h:* {{'TypeDef::S5' has different definitions in different modules; first difference is definition in module 'SecondModule' found field}}
623// expected-note@first.h:* {{but in 'FirstModule' found typedef}}
624#endif
625
626#if defined(FIRST)
627typedef float F;
628struct S6 {
629 typedef int a;
630 typedef F b;
631};
632#elif defined(SECOND)
633struct S6 {
634 typedef int a;
635 typedef float b;
636};
637#else
638S6 s6;
639// expected-error@second.h:* {{'TypeDef::S6' has different definitions in different modules; first difference is definition in module 'SecondModule' found typedef 'b' with underlying type 'float'}}
640// expected-note@first.h:* {{but in 'FirstModule' found typedef 'b' with different underlying type 'TypeDef::F' (aka 'float')}}
641#endif
Richard Trieu33562c22017-03-08 00:13:19 +0000642} // namespace TypeDef
643
644namespace Using {
645#if defined(FIRST)
646struct S1 {
647 using a = int;
648};
649#elif defined(SECOND)
650struct S1 {
651 using a = double;
652};
653#else
654S1 s1;
655// expected-error@first.h:* {{'Using::S1::a' from module 'FirstModule' is not present in definition of 'Using::S1' in module 'SecondModule'}}
656// expected-note@second.h:* {{declaration of 'a' does not match}}
657#endif
658
659#if defined(FIRST)
660struct S2 {
661 using a = int;
662};
663#elif defined(SECOND)
664struct S2 {
665 using b = int;
666};
667#else
668S2 s2;
669// expected-error@first.h:* {{'Using::S2::a' from module 'FirstModule' is not present in definition of 'Using::S2' in module 'SecondModule'}}
670// expected-note@second.h:* {{definition has no member 'a'}}
671#endif
672
673#if defined(FIRST)
674typedef int T;
675struct S3 {
676 using a = T;
677};
678#elif defined(SECOND)
679typedef double T;
680struct S3 {
681 using a = T;
682};
683#else
684S3 s3;
685// expected-error@first.h:* {{'Using::S3::a' from module 'FirstModule' is not present in definition of 'Using::S3' in module 'SecondModule'}}
686// expected-note@second.h:* {{declaration of 'a' does not match}}
687#endif
Richard Trieu11d566a2017-06-12 21:58:22 +0000688
689#if defined(FIRST)
690struct S4 {
691 using a = int;
692 using b = int;
693};
694#elif defined(SECOND)
695struct S4 {
696 using b = int;
697 using a = int;
698};
699#else
700S4 s4;
701// expected-error@second.h:* {{'Using::S4' has different definitions in different modules; first difference is definition in module 'SecondModule' found type alias name 'b'}}
702// expected-note@first.h:* {{but in 'FirstModule' found type alias name 'a'}}
703#endif
704
705#if defined(FIRST)
706struct S5 {
707 using a = int;
708 using b = int;
709 int x;
710};
711#elif defined(SECOND)
712struct S5 {
713 int x;
714 using b = int;
715 using a = int;
716};
717#else
718S5 s5;
719// expected-error@second.h:* {{'Using::S5' has different definitions in different modules; first difference is definition in module 'SecondModule' found field}}
720// expected-note@first.h:* {{but in 'FirstModule' found type alias}}
721#endif
722
723#if defined(FIRST)
724typedef float F;
725struct S6 {
726 using a = int;
727 using b = F;
728};
729#elif defined(SECOND)
730struct S6 {
731 using a = int;
732 using b = float;
733};
734#else
735S6 s6;
736// expected-error@second.h:* {{'Using::S6' has different definitions in different modules; first difference is definition in module 'SecondModule' found type alias 'b' with underlying type 'float'}}
737// expected-note@first.h:* {{but in 'FirstModule' found type alias 'b' with different underlying type 'Using::F' (aka 'float')}}
738#endif
Richard Trieu33562c22017-03-08 00:13:19 +0000739} // namespace Using
740
Richard Trieu58bb7bd2017-05-17 02:29:02 +0000741namespace RecordType {
742#if defined(FIRST)
743struct B1 {};
744struct S1 {
745 B1 x;
746};
747#elif defined(SECOND)
748struct A1 {};
749struct S1 {
750 A1 x;
751};
752#else
753S1 s1;
754// expected-error@first.h:* {{'RecordType::S1::x' from module 'FirstModule' is not present in definition of 'RecordType::S1' in module 'SecondModule'}}
755// expected-note@second.h:* {{declaration of 'x' does not match}}
756#endif
757}
758
759namespace DependentType {
760#if defined(FIRST)
761template <class T>
762class S1 {
763 typename T::typeA x;
764};
765#elif defined(SECOND)
766template <class T>
767class S1 {
768 typename T::typeB x;
769};
770#else
771template<class T>
772using U1 = S1<T>;
773// expected-error@first.h:* {{'DependentType::S1::x' from module 'FirstModule' is not present in definition of 'S1<T>' in module 'SecondModule'}}
774// expected-note@second.h:* {{declaration of 'x' does not match}}
775#endif
776}
777
778namespace ElaboratedType {
779#if defined(FIRST)
780namespace N1 { using type = double; }
781struct S1 {
782 N1::type x;
783};
784#elif defined(SECOND)
785namespace N1 { using type = int; }
786struct S1 {
787 N1::type x;
788};
789#else
790S1 s1;
791// expected-error@first.h:* {{'ElaboratedType::S1::x' from module 'FirstModule' is not present in definition of 'ElaboratedType::S1' in module 'SecondModule'}}
792// expected-note@second.h:* {{declaration of 'x' does not match}}
793#endif
794}
795
796namespace Enum {
797#if defined(FIRST)
798enum A1 {};
799struct S1 {
800 A1 x;
801};
802#elif defined(SECOND)
803enum A2 {};
804struct S1 {
805 A2 x;
806};
807#else
808S1 s1;
809// expected-error@first.h:* {{'Enum::S1::x' from module 'FirstModule' is not present in definition of 'Enum::S1' in module 'SecondModule'}}
810// expected-note@second.h:* {{declaration of 'x' does not match}}
811#endif
812}
Hans Wennborg22707762017-04-12 16:40:26 +0000813
Richard Trieuce81b192017-05-17 03:23:35 +0000814namespace NestedNamespaceSpecifier {
815#if defined(FIRST)
816namespace LevelA1 {
817using Type = int;
818}
819
820struct S1 {
821 LevelA1::Type x;
822};
823# elif defined(SECOND)
824namespace LevelB1 {
825namespace LevelC1 {
826using Type = int;
827}
828}
829
830struct S1 {
831 LevelB1::LevelC1::Type x;
832};
833#else
834S1 s1;
835// expected-error@second.h:* {{'NestedNamespaceSpecifier::S1' has different definitions in different modules; first difference is definition in module 'SecondModule' found field 'x' with type 'LevelB1::LevelC1::Type' (aka 'int')}}
836// expected-note@first.h:* {{but in 'FirstModule' found field 'x' with type 'LevelA1::Type' (aka 'int')}}
837#endif
838
839#if defined(FIRST)
840namespace LevelA2 { using Type = int; }
841struct S2 {
842 LevelA2::Type x;
843};
844# elif defined(SECOND)
845struct S2 {
846 int x;
847};
848#else
849S2 s2;
850// expected-error@second.h:* {{'NestedNamespaceSpecifier::S2' has different definitions in different modules; first difference is definition in module 'SecondModule' found field 'x' with type 'int'}}
851// expected-note@first.h:* {{but in 'FirstModule' found field 'x' with type 'LevelA2::Type' (aka 'int')}}
852#endif
853
854namespace LevelA3 { using Type = int; }
855namespace LevelB3 { using Type = int; }
856#if defined(FIRST)
857struct S3 {
858 LevelA3::Type x;
859};
860# elif defined(SECOND)
861struct S3 {
862 LevelB3::Type x;
863};
864#else
865S3 s3;
866// expected-error@second.h:* {{'NestedNamespaceSpecifier::S3' has different definitions in different modules; first difference is definition in module 'SecondModule' found field 'x' with type 'LevelB3::Type' (aka 'int')}}
867// expected-note@first.h:* {{but in 'FirstModule' found field 'x' with type 'LevelA3::Type' (aka 'int')}}
868#endif
869
870#if defined(FIRST)
871struct TA4 { using Type = int; };
872struct S4 {
873 TA4::Type x;
874};
875# elif defined(SECOND)
876struct TB4 { using Type = int; };
877struct S4 {
878 TB4::Type x;
879};
880#else
881S4 s4;
882// expected-error@second.h:* {{'NestedNamespaceSpecifier::S4' has different definitions in different modules; first difference is definition in module 'SecondModule' found field 'x' with type 'TB4::Type' (aka 'int')}}
883// expected-note@first.h:* {{but in 'FirstModule' found field 'x' with type 'TA4::Type' (aka 'int')}}
884#endif
885
886#if defined(FIRST)
887struct T5 { using Type = int; };
888struct S5 {
889 T5::Type x;
890};
891# elif defined(SECOND)
892namespace T5 { using Type = int; };
893struct S5 {
894 T5::Type x;
895};
896#else
897S5 s5;
898// expected-error@second.h:* {{'NestedNamespaceSpecifier::S5' has different definitions in different modules; first difference is definition in module 'SecondModule' found field 'x' with type 'T5::Type' (aka 'int')}}
899// expected-note@first.h:* {{but in 'FirstModule' found field 'x' with type 'T5::Type' (aka 'int')}}
900#endif
901
902#if defined(FIRST)
903namespace N6 {using I = int;}
904struct S6 {
905 NestedNamespaceSpecifier::N6::I x;
906};
907# elif defined(SECOND)
908using I = int;
909struct S6 {
910 ::NestedNamespaceSpecifier::I x;
911};
912#else
913S6 s6;
914// expected-error@second.h:* {{'NestedNamespaceSpecifier::S6' has different definitions in different modules; first difference is definition in module 'SecondModule' found field 'x' with type '::NestedNamespaceSpecifier::I' (aka 'int')}}
915// expected-note@first.h:* {{but in 'FirstModule' found field 'x' with type 'NestedNamespaceSpecifier::N6::I' (aka 'int')}}
916#endif
917
918#if defined(FIRST)
919template <class T, class U>
920class S7 {
921 typename T::type *x = {};
922 int z = x->T::foo();
923};
924#elif defined(SECOND)
925template <class T, class U>
926class S7 {
927 typename T::type *x = {};
928 int z = x->U::foo();
929};
930#else
931template <class T, class U>
932using U7 = S7<T, U>;
933// expected-error@second.h:* {{'NestedNamespaceSpecifier::S7' has different definitions in different modules; first difference is definition in module 'SecondModule' found field 'z' with an initializer}}
934// expected-note@first.h:* {{but in 'FirstModule' found field 'z' with a different initializer}}
935#endif
936
937#if defined(FIRST)
938template <class T>
939class S8 {
940 int x = T::template X<int>::value;
941};
942#elif defined(SECOND)
943template <class T>
944class S8 {
945 int x = T::template Y<int>::value;
946};
947#else
948template <class T>
949using U8 = S8<T>;
950// expected-error@second.h:* {{'NestedNamespaceSpecifier::S8' has different definitions in different modules; first difference is definition in module 'SecondModule' found field 'x' with an initializer}}
951// expected-note@first.h:* {{but in 'FirstModule' found field 'x' with a different initializer}}
952#endif
953
954#if defined(FIRST)
955namespace N9 { using I = int; }
956namespace O9 = N9;
957struct S9 {
958 O9::I x;
959};
960#elif defined(SECOND)
961namespace N9 { using I = int; }
962namespace P9 = N9;
963struct S9 {
964 P9::I x;
965};
966#else
967S9 s9;
968// expected-error@second.h:* {{'NestedNamespaceSpecifier::S9' has different definitions in different modules; first difference is definition in module 'SecondModule' found field 'x' with type 'P9::I' (aka 'int')}}
969// expected-note@first.h:* {{but in 'FirstModule' found field 'x' with type 'O9::I' (aka 'int')}}
970#endif
971}
972
Richard Trieu96b49622017-05-31 00:31:58 +0000973namespace TemplateSpecializationType {
974#if defined(FIRST)
975template <class T1> struct U1 {};
976struct S1 {
977 U1<int> u;
978};
979#elif defined(SECOND)
980template <class T1, class T2> struct U1 {};
981struct S1 {
982 U1<int, int> u;
983};
984#else
985S1 s1;
986// expected-error@first.h:* {{'TemplateSpecializationType::S1::u' from module 'FirstModule' is not present in definition of 'TemplateSpecializationType::S1' in module 'SecondModule'}}
987// expected-note@second.h:* {{declaration of 'u' does not match}}
988#endif
989
990#if defined(FIRST)
991template <class T1> struct U2 {};
992struct S2 {
993 U2<int> u;
994};
995#elif defined(SECOND)
996template <class T1> struct V1 {};
997struct S2 {
998 V1<int> u;
999};
1000#else
1001S2 s2;
1002// expected-error@first.h:* {{'TemplateSpecializationType::S2::u' from module 'FirstModule' is not present in definition of 'TemplateSpecializationType::S2' in module 'SecondModule'}}
1003// expected-note@second.h:* {{declaration of 'u' does not match}}
1004#endif
1005}
1006
Richard Trieu3b261bb72017-06-13 22:21:18 +00001007namespace TemplateArgument {
1008#if defined(FIRST)
1009template <class> struct U1{};
1010struct S1 {
1011 U1<int> x;
1012};
1013#elif defined(SECOND)
1014template <int> struct U1{};
1015struct S1 {
1016 U1<1> x;
1017};
1018#else
1019S1 s1;
1020// expected-error@first.h:* {{'TemplateArgument::S1::x' from module 'FirstModule' is not present in definition of 'TemplateArgument::S1' in module 'SecondModule'}}
1021// expected-note@second.h:* {{declaration of 'x' does not match}}
1022#endif
Richard Trieu1dcb4052017-06-14 01:28:00 +00001023
1024#if defined(FIRST)
1025template <int> struct U2{};
1026struct S2 {
1027 using T = U2<2>;
1028};
1029#elif defined(SECOND)
1030template <int> struct U2{};
1031struct S2 {
1032 using T = U2<(2)>;
1033};
1034#else
1035S2 s2;
1036// expected-error@second.h:* {{'TemplateArgument::S2' has different definitions in different modules; first difference is definition in module 'SecondModule' found type alias 'T' with underlying type 'U2<(2)>'}}
1037// expected-note@first.h:* {{but in 'FirstModule' found type alias 'T' with different underlying type 'U2<2>'}}
1038#endif
1039
1040#if defined(FIRST)
1041template <int> struct U3{};
1042struct S3 {
1043 using T = U3<2>;
1044};
1045#elif defined(SECOND)
1046template <int> struct U3{};
1047struct S3 {
1048 using T = U3<1 + 1>;
1049};
1050#else
1051S3 s3;
1052// expected-error@second.h:* {{'TemplateArgument::S3' has different definitions in different modules; first difference is definition in module 'SecondModule' found type alias 'T' with underlying type 'U3<1 + 1>'}}
1053// expected-note@first.h:* {{but in 'FirstModule' found type alias 'T' with different underlying type 'U3<2>'}}
1054#endif
1055
Richard Trieuee132d62017-06-14 03:17:26 +00001056#if defined(FIRST)
1057template<class> struct T4a {};
1058template <template <class> class T> struct U4 {};
1059struct S4 {
1060 U4<T4a> x;
1061};
1062#elif defined(SECOND)
1063template<class> struct T4b {};
1064template <template <class> class T> struct U4 {};
1065struct S4 {
1066 U4<T4b> x;
1067};
1068#else
1069S4 s4;
1070// expected-error@first.h:* {{'TemplateArgument::S4::x' from module 'FirstModule' is not present in definition of 'TemplateArgument::S4' in module 'SecondModule'}}
1071// expected-note@second.h:* {{declaration of 'x' does not match}}
1072#endif
Richard Trieud9201d02017-06-15 01:35:06 +00001073}
Richard Trieuee132d62017-06-14 03:17:26 +00001074
Richard Trieud9201d02017-06-15 01:35:06 +00001075namespace TemplateTypeParmType {
1076#if defined(FIRST)
1077template <class T1, class T2>
1078struct S1 {
1079 T1 x;
1080};
1081#elif defined(SECOND)
1082template <class T1, class T2>
1083struct S1 {
1084 T2 x;
1085};
1086#else
1087using TemplateTypeParmType::S1;
1088// expected-error@first.h:* {{'TemplateTypeParmType::S1::x' from module 'FirstModule' is not present in definition of 'S1<T1, T2>' in module 'SecondModule'}}
1089// expected-note@second.h:* {{declaration of 'x' does not match}}
1090#endif
1091
1092#if defined(FIRST)
1093template <int ...Ts>
1094struct U2 {};
1095template <int T, int U>
1096class S2 {
1097 typedef U2<U, T> type;
1098 type x;
1099};
1100#elif defined(SECOND)
1101template <int ...Ts>
1102struct U2 {};
1103template <int T, int U>
1104class S2 {
1105 typedef U2<T, U> type;
1106 type x;
1107};
1108#else
1109using TemplateTypeParmType::S2;
1110// expected-error@first.h:* {{'TemplateTypeParmType::S2::x' from module 'FirstModule' is not present in definition of 'S2<T, U>' in module 'SecondModule'}}
1111// expected-note@second.h:* {{declaration of 'x' does not match}}
1112// expected-error@first.h:* {{'TemplateTypeParmType::S2::type' from module 'FirstModule' is not present in definition of 'S2<T, U>' in module 'SecondModule'}}
1113// expected-note@second.h:* {{declaration of 'type' does not match}}
1114#endif
Richard Trieu3b261bb72017-06-13 22:21:18 +00001115}
1116
Richard Trieu6e13ff32017-06-16 02:44:29 +00001117namespace VarDecl {
1118#if defined(FIRST)
1119struct S1 {
1120 static int x;
1121 static int y;
1122};
1123#elif defined(SECOND)
1124struct S1 {
1125 static int y;
1126 static int x;
1127};
1128#else
1129S1 s1;
1130// expected-error@second.h:* {{'VarDecl::S1' has different definitions in different modules; first difference is definition in module 'SecondModule' found data member with name 'y'}}
1131// expected-note@first.h:* {{but in 'FirstModule' found data member with name 'x'}}
1132#endif
1133
1134#if defined(FIRST)
1135struct S2 {
1136 static int x;
1137};
1138#elif defined(SECOND)
1139using I = int;
1140struct S2 {
1141 static I x;
1142};
1143#else
1144S2 s2;
1145// expected-error@second.h:* {{'VarDecl::S2' has different definitions in different modules; first difference is definition in module 'SecondModule' found data member 'x' with type 'VarDecl::I' (aka 'int')}}
1146// expected-note@first.h:* {{but in 'FirstModule' found data member 'x' with different type 'int'}}
1147#endif
1148
1149#if defined(FIRST)
1150struct S3 {
1151 static const int x = 1;
1152};
1153#elif defined(SECOND)
1154struct S3 {
1155 static const int x;
1156};
1157#else
1158S3 s3;
1159// expected-error@second.h:* {{'VarDecl::S3' has different definitions in different modules; first difference is definition in module 'SecondModule' found data member 'x' with an initializer}}
1160// expected-note@first.h:* {{but in 'FirstModule' found data member 'x' without an initializer}}
1161#endif
1162
1163#if defined(FIRST)
1164struct S4 {
1165 static const int x = 1;
1166};
1167#elif defined(SECOND)
1168struct S4 {
1169 static const int x = 2;
1170};
1171#else
1172S4 s4;
1173// expected-error@second.h:* {{'VarDecl::S4' has different definitions in different modules; first difference is definition in module 'SecondModule' found data member 'x' with an initializer}}
1174// expected-note@first.h:* {{but in 'FirstModule' found data member 'x' with a different initializer}}
1175#endif
1176
1177#if defined(FIRST)
1178struct S5 {
1179 static const int x = 1;
1180};
1181#elif defined(SECOND)
1182struct S5 {
1183 static constexpr int x = 1;
1184};
1185#else
1186S5 s5;
1187// expected-error@second.h:* {{'VarDecl::S5' has different definitions in different modules; first difference is definition in module 'SecondModule' found data member 'x' is not constexpr}}
1188// expected-note@first.h:* {{but in 'FirstModule' found data member 'x' is constexpr}}
1189#endif
1190
1191#if defined(FIRST)
1192struct S6 {
1193 static const int x = 1;
1194};
1195#elif defined(SECOND)
1196struct S6 {
1197 static const int y = 1;
1198};
1199#else
1200S6 s6;
1201// expected-error@first.h:* {{'VarDecl::S6::x' from module 'FirstModule' is not present in definition of 'VarDecl::S6' in module 'SecondModule'}}
1202// expected-note@second.h:* {{definition has no member 'x'}}
1203#endif
1204
1205#if defined(FIRST)
1206struct S7 {
1207 static const int x = 1;
1208};
1209#elif defined(SECOND)
1210struct S7 {
1211 static const unsigned x = 1;
1212};
1213#else
1214S7 s7;
1215// expected-error@first.h:* {{'VarDecl::S7::x' from module 'FirstModule' is not present in definition of 'VarDecl::S7' in module 'SecondModule'}}
1216// expected-note@second.h:* {{declaration of 'x' does not match}}
1217#endif
1218
1219#if defined(FIRST)
1220struct S8 {
1221public:
1222 static const int x = 1;
1223};
1224#elif defined(SECOND)
1225struct S8 {
1226 static const int x = 1;
1227public:
1228};
1229#else
1230S8 s8;
1231// expected-error@second.h:* {{'VarDecl::S8' has different definitions in different modules; first difference is definition in module 'SecondModule' found data member}}
1232// expected-note@first.h:* {{but in 'FirstModule' found public access specifier}}
1233#endif
1234
1235#if defined(FIRST)
1236struct S9 {
1237 static const int x = 1;
1238};
1239#elif defined(SECOND)
1240struct S9 {
1241 static int x;
1242};
1243#else
1244S9 s9;
1245// expected-error@first.h:* {{'VarDecl::S9::x' from module 'FirstModule' is not present in definition of 'VarDecl::S9' in module 'SecondModule'}}
1246// expected-note@second.h:* {{declaration of 'x' does not match}}
1247#endif
1248
1249#if defined(FIRST)
1250template <typename T>
1251struct S {
1252 struct R {
1253 void foo(T x = 0) {}
1254 };
1255};
1256#elif defined(SECOND)
1257template <typename T>
1258struct S {
1259 struct R {
1260 void foo(T x = 1) {}
1261 };
1262};
1263#else
1264void run() {
1265 S<int>::R().foo();
1266}
1267// expected-error@second.h:* {{'VarDecl::S::R' has different definitions in different modules; first difference is definition in module 'SecondModule' found method 'foo' with 1st parameter with a default argument}}
1268// expected-note@first.h:* {{but in 'FirstModule' found method 'foo' with 1st parameter with a different default argument}}
1269#endif
1270
1271#if defined(FIRST)
1272template <typename alpha> struct Bravo {
1273 void charlie(bool delta = false) {}
1274};
1275typedef Bravo<char> echo;
1276echo foxtrot;
1277#elif defined(SECOND)
1278template <typename alpha> struct Bravo {
1279 void charlie(bool delta = (false)) {}
1280};
1281typedef Bravo<char> echo;
1282echo foxtrot;
1283#else
1284Bravo<char> golf;
1285// expected-error@second.h:* {{'VarDecl::Bravo' has different definitions in different modules; first difference is definition in module 'SecondModule' found method 'charlie' with 1st parameter with a default argument}}
1286// expected-note@first.h:* {{but in 'FirstModule' found method 'charlie' with 1st parameter with a different default argument}}
1287#endif
1288}
1289
Richard Trieue7f7ed22017-02-22 01:11:25 +00001290// Interesting cases that should not cause errors. struct S should not error
1291// while struct T should error at the access specifier mismatch at the end.
1292namespace AllDecls {
Richard Trieu02552272017-05-02 23:58:52 +00001293#define CREATE_ALL_DECL_STRUCT(NAME, ACCESS) \
1294 typedef int INT; \
1295 struct NAME { \
1296 public: \
1297 private: \
1298 protected: \
1299 static_assert(1 == 1, "Message"); \
1300 static_assert(2 == 2); \
1301 \
1302 int x; \
1303 double y; \
1304 \
1305 INT z; \
1306 \
1307 unsigned a : 1; \
1308 unsigned b : 2 * 2 + 5 / 2; \
1309 \
1310 mutable int c = sizeof(x + y); \
1311 \
1312 void method() {} \
1313 static void static_method() {} \
1314 virtual void virtual_method() {} \
1315 virtual void pure_virtual_method() = 0; \
1316 inline void inline_method() {} \
1317 void volatile_method() volatile {} \
1318 void const_method() const {} \
1319 \
1320 typedef int typedef_int; \
1321 using using_int = int; \
1322 \
1323 void method_one_arg(int x) {} \
1324 void method_one_arg_default_argument(int x = 5 + 5) {} \
1325 void method_decayed_type(int x[5]) {} \
1326 \
1327 int constant_arr[5]; \
1328 \
1329 ACCESS: \
Richard Trieufe564052017-04-20 02:53:53 +00001330 };
1331
Richard Trieue7f7ed22017-02-22 01:11:25 +00001332#if defined(FIRST)
Richard Trieufe564052017-04-20 02:53:53 +00001333CREATE_ALL_DECL_STRUCT(S, public)
Richard Trieue7f7ed22017-02-22 01:11:25 +00001334#elif defined(SECOND)
Richard Trieufe564052017-04-20 02:53:53 +00001335CREATE_ALL_DECL_STRUCT(S, public)
Richard Trieue7f7ed22017-02-22 01:11:25 +00001336#else
Richard Trieu583e2c12017-03-04 00:08:58 +00001337S *s;
Richard Trieue7f7ed22017-02-22 01:11:25 +00001338#endif
1339
1340#if defined(FIRST)
Richard Trieufe564052017-04-20 02:53:53 +00001341CREATE_ALL_DECL_STRUCT(T, private)
Richard Trieue7f7ed22017-02-22 01:11:25 +00001342#elif defined(SECOND)
Richard Trieufe564052017-04-20 02:53:53 +00001343CREATE_ALL_DECL_STRUCT(T, public)
Richard Trieue7f7ed22017-02-22 01:11:25 +00001344#else
Richard Trieu583e2c12017-03-04 00:08:58 +00001345T *t;
Richard Trieue7f7ed22017-02-22 01:11:25 +00001346// expected-error@second.h:* {{'AllDecls::T' has different definitions in different modules; first difference is definition in module 'SecondModule' found public access specifier}}
1347// expected-note@first.h:* {{but in 'FirstModule' found private access specifier}}
1348#endif
1349}
1350
1351namespace FriendFunction {
1352#if defined(FIRST)
1353void F(int = 0);
1354struct S { friend void F(int); };
1355#elif defined(SECOND)
1356void F(int);
1357struct S { friend void F(int); };
1358#else
1359S s;
1360#endif
1361
1362#if defined(FIRST)
1363void G(int = 0);
1364struct T {
1365 friend void G(int);
1366
1367 private:
1368};
1369#elif defined(SECOND)
1370void G(int);
1371struct T {
1372 friend void G(int);
1373
1374 public:
1375};
1376#else
1377T t;
1378// expected-error@second.h:* {{'FriendFunction::T' has different definitions in different modules; first difference is definition in module 'SecondModule' found public access specifier}}
1379// expected-note@first.h:* {{but in 'FirstModule' found private access specifier}}
1380#endif
1381} // namespace FriendFunction
1382
1383namespace ImplicitDecl {
1384#if defined(FIRST)
1385struct S { };
1386void S_Constructors() {
1387 // Trigger creation of implicit contructors
1388 S foo;
1389 S bar = foo;
1390 S baz(bar);
1391}
1392#elif defined(SECOND)
1393struct S { };
1394#else
1395S s;
1396#endif
1397
1398#if defined(FIRST)
1399struct T {
1400 private:
1401};
1402void T_Constructors() {
1403 // Trigger creation of implicit contructors
1404 T foo;
1405 T bar = foo;
1406 T baz(bar);
1407}
1408#elif defined(SECOND)
1409struct T {
1410 public:
1411};
1412#else
1413T t;
1414// expected-error@first.h:* {{'ImplicitDecl::T' has different definitions in different modules; first difference is definition in module 'FirstModule' found private access specifier}}
1415// expected-note@second.h:* {{but in 'SecondModule' found public access specifier}}
1416#endif
1417
1418} // namespace ImplicitDelc
1419
1420namespace TemplatedClass {
1421#if defined(FIRST)
1422template <class>
1423struct S {};
1424#elif defined(SECOND)
1425template <class>
1426struct S {};
1427#else
1428S<int> s;
1429#endif
1430
1431#if defined(FIRST)
1432template <class>
1433struct T {
1434 private:
1435};
1436#elif defined(SECOND)
1437template <class>
1438struct T {
1439 public:
1440};
1441#else
1442T<int> t;
1443// expected-error@second.h:* {{'TemplatedClass::T' has different definitions in different modules; first difference is definition in module 'SecondModule' found public access specifier}}
1444// expected-note@first.h:* {{but in 'FirstModule' found private access specifier}}
1445#endif
1446} // namespace TemplatedClass
1447
1448namespace TemplateClassWithField {
1449#if defined(FIRST)
1450template <class A>
1451struct S {
1452 A a;
1453};
1454#elif defined(SECOND)
1455template <class A>
1456struct S {
1457 A a;
1458};
1459#else
1460S<int> s;
1461#endif
1462
1463#if defined(FIRST)
1464template <class A>
1465struct T {
1466 A a;
1467
1468 private:
1469};
1470#elif defined(SECOND)
1471template <class A>
1472struct T {
1473 A a;
1474
1475 public:
1476};
1477#else
1478T<int> t;
1479// expected-error@second.h:* {{'TemplateClassWithField::T' has different definitions in different modules; first difference is definition in module 'SecondModule' found public access specifier}}
1480// expected-note@first.h:* {{but in 'FirstModule' found private access specifier}}
1481#endif
1482} // namespace TemplateClassWithField
1483
1484namespace TemplateClassWithTemplateField {
1485#if defined(FIRST)
1486template <class A>
1487class WrapperS;
1488template <class A>
1489struct S {
1490 WrapperS<A> a;
1491};
1492#elif defined(SECOND)
1493template <class A>
1494class WrapperS;
1495template <class A>
1496struct S {
1497 WrapperS<A> a;
1498};
1499#else
1500template <class A>
1501class WrapperS{};
1502S<int> s;
1503#endif
1504
1505#if defined(FIRST)
1506template <class A>
1507class WrapperT;
1508template <class A>
1509struct T {
1510 WrapperT<A> a;
1511
1512 public:
1513};
1514#elif defined(SECOND)
1515template <class A>
1516class WrapperT;
1517template <class A>
1518struct T {
1519 WrapperT<A> a;
1520
1521 private:
1522};
1523#else
1524template <class A>
1525class WrapperT{};
1526T<int> t;
1527// expected-error@second.h:* {{'TemplateClassWithTemplateField::T' has different definitions in different modules; first difference is definition in module 'SecondModule' found private access specifier}}
1528// expected-note@first.h:* {{but in 'FirstModule' found public access specifier}}
1529#endif
1530} // namespace TemplateClassWithTemplateField
1531
1532namespace EnumWithForwardDeclaration {
1533#if defined(FIRST)
1534enum E : int;
1535struct S {
1536 void get(E) {}
1537};
1538#elif defined(SECOND)
1539enum E : int { A, B };
1540struct S {
1541 void get(E) {}
1542};
1543#else
1544S s;
1545#endif
1546
1547#if defined(FIRST)
1548struct T {
1549 void get(E) {}
1550 public:
1551};
1552#elif defined(SECOND)
1553struct T {
1554 void get(E) {}
1555 private:
1556};
1557#else
1558T t;
1559// expected-error@second.h:* {{'EnumWithForwardDeclaration::T' has different definitions in different modules; first difference is definition in module 'SecondModule' found private access specifier}}
1560// expected-note@first.h:* {{but in 'FirstModule' found public access specifier}}
1561#endif
1562} // namespace EnumWithForwardDeclaration
1563
1564namespace StructWithForwardDeclaration {
1565#if defined(FIRST)
1566struct P {};
1567struct S {
1568 struct P *ptr;
1569};
1570#elif defined(SECOND)
1571struct S {
1572 struct P *ptr;
1573};
1574#else
1575S s;
1576#endif
1577
1578#if defined(FIRST)
1579struct Q {};
1580struct T {
1581 struct Q *ptr;
1582 public:
1583};
1584#elif defined(SECOND)
1585struct T {
1586 struct Q *ptr;
1587 private:
1588};
1589#else
1590T t;
1591// expected-error@second.h:* {{'StructWithForwardDeclaration::T' has different definitions in different modules; first difference is definition in module 'SecondModule' found private access specifier}}
1592// expected-note@first.h:* {{but in 'FirstModule' found public access specifier}}
1593#endif
1594} // namespace StructWithForwardDeclaration
1595
1596namespace StructWithForwardDeclarationNoDefinition {
1597#if defined(FIRST)
1598struct P;
1599struct S {
1600 struct P *ptr;
1601};
1602#elif defined(SECOND)
1603struct S {
1604 struct P *ptr;
1605};
1606#else
1607S s;
1608#endif
1609
1610#if defined(FIRST)
1611struct Q;
1612struct T {
1613 struct Q *ptr;
1614
1615 public:
1616};
1617#elif defined(SECOND)
1618struct T {
1619 struct Q *ptr;
1620
1621 private:
1622};
1623#else
1624T t;
1625// expected-error@second.h:* {{'StructWithForwardDeclarationNoDefinition::T' has different definitions in different modules; first difference is definition in module 'SecondModule' found private access specifier}}
1626// expected-note@first.h:* {{but in 'FirstModule' found public access specifier}}
1627#endif
1628} // namespace StructWithForwardDeclarationNoDefinition
1629
Richard Trieufe564052017-04-20 02:53:53 +00001630namespace LateParsedDefaultArgument {
1631#if defined(FIRST)
1632template <typename T>
1633struct S {
1634 struct R {
1635 void foo(T x = 0) {}
1636 };
1637};
1638#elif defined(SECOND)
1639#else
1640void run() {
1641 S<int>::R().foo();
1642}
1643#endif
1644}
1645
1646namespace LateParsedDefaultArgument {
1647#if defined(FIRST)
1648template <typename alpha> struct Bravo {
1649 void charlie(bool delta = false) {}
1650};
1651typedef Bravo<char> echo;
1652echo foxtrot;
1653
1654Bravo<char> golf;
1655#elif defined(SECOND)
1656#else
1657#endif
1658}
1659
Richard Trieu157ed942017-04-28 22:03:28 +00001660namespace DifferentParameterNameInTemplate {
1661#if defined(FIRST) || defined(SECOND)
1662template <typename T>
1663struct S {
1664 typedef T Type;
1665
1666 static void Run(const Type *name_one);
1667};
1668
1669template <typename T>
1670void S<T>::Run(const T *name_two) {}
1671
1672template <typename T>
1673struct Foo {
1674 ~Foo() { Handler::Run(nullptr); }
1675 Foo() {}
1676
1677 class Handler : public S<T> {};
1678
1679 void Get(typename Handler::Type *x = nullptr) {}
1680 void Add() { Handler::Run(nullptr); }
1681};
1682#endif
1683
1684#if defined(FIRST)
1685struct Beta;
1686
1687struct Alpha {
1688 Alpha();
1689 void Go() { betas.Get(); }
1690 Foo<Beta> betas;
1691};
1692
1693#elif defined(SECOND)
1694struct Beta {};
1695
1696struct BetaHelper {
1697 void add_Beta() { betas.Add(); }
1698 Foo<Beta> betas;
1699};
1700
1701#else
1702Alpha::Alpha() {}
1703#endif
1704}
1705
Richard Trieu02552272017-05-02 23:58:52 +00001706namespace ParameterTest {
1707#if defined(FIRST)
1708class X {};
1709template <typename G>
1710class S {
1711 public:
1712 typedef G Type;
1713 static inline G *Foo(const G *a, int * = nullptr);
1714};
1715
1716template<typename G>
1717G* S<G>::Foo(const G* aaaa, int*) {}
1718#elif defined(SECOND)
1719template <typename G>
1720class S {
1721 public:
1722 typedef G Type;
1723 static inline G *Foo(const G *a, int * = nullptr);
1724};
1725
1726template<typename G>
1727G* S<G>::Foo(const G* asdf, int*) {}
1728#else
1729S<X> s;
1730#endif
1731}
1732
Richard Trieub35ef2a2017-05-09 03:24:34 +00001733namespace MultipleTypedefs {
1734#if defined(FIRST)
1735typedef int B1;
1736typedef B1 A1;
1737struct S1 {
1738 A1 x;
1739};
1740#elif defined(SECOND)
1741typedef int A1;
1742struct S1 {
1743 A1 x;
1744};
1745#else
1746S1 s1;
1747#endif
1748
1749#if defined(FIRST)
1750struct T2 { int x; };
1751typedef T2 B2;
1752typedef B2 A2;
1753struct S2 {
1754 T2 x;
1755};
1756#elif defined(SECOND)
1757struct T2 { int x; };
1758typedef T2 A2;
1759struct S2 {
1760 T2 x;
1761};
1762#else
1763S2 s2;
1764#endif
Richard Trieu3e03d3e2017-06-29 22:53:04 +00001765
1766#if defined(FIRST)
1767using A3 = const int;
1768using B3 = volatile A3;
1769struct S3 {
1770 B3 x = 1;
1771};
1772#elif defined(SECOND)
1773using A3 = volatile const int;
1774using B3 = A3;
1775struct S3 {
1776 B3 x = 1;
1777};
1778#else
1779S3 s3;
1780#endif
Richard Trieub35ef2a2017-05-09 03:24:34 +00001781}
Richard Trieu02552272017-05-02 23:58:52 +00001782
Richard Trieue7f7ed22017-02-22 01:11:25 +00001783// Keep macros contained to one file.
1784#ifdef FIRST
1785#undef FIRST
1786#endif
1787#ifdef SECOND
1788#undef SECOND
1789#endif