blob: 3b213971696c24343d89a3f1ac2a09ef1b05d034 [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 Trieu8844c522017-06-30 22:40:33 +00001073
1074#if defined(FIRST)
1075template <class T> struct U5 {};
1076struct S5 {
1077 U5<int> x;
1078};
1079#elif defined(SECOND)
1080template <class T> struct U5 {};
1081struct S5 {
1082 U5<short> x;
1083};
1084#else
1085S5 s5;
1086// expected-error@first.h:* {{'TemplateArgument::S5::x' from module 'FirstModule' is not present in definition of 'TemplateArgument::S5' in module 'SecondModule'}}
1087// expected-note@second.h:* {{declaration of 'x' does not match}}
1088#endif
1089
1090#if defined(FIRST)
1091template <class T> struct U6 {};
1092struct S6 {
1093 U6<int> x;
1094 U6<short> y;
1095};
1096#elif defined(SECOND)
1097template <class T> struct U6 {};
1098struct S6 {
1099 U6<short> y;
1100 U6<int> x;
1101};
1102#else
1103S6 s6;
1104// expected-error@second.h:* {{'TemplateArgument::S6' has different definitions in different modules; first difference is definition in module 'SecondModule' found field 'y'}}
1105// expected-note@first.h:* {{but in 'FirstModule' found field 'x'}}
1106#endif
Richard Trieud9201d02017-06-15 01:35:06 +00001107}
Richard Trieuee132d62017-06-14 03:17:26 +00001108
Richard Trieud9201d02017-06-15 01:35:06 +00001109namespace TemplateTypeParmType {
1110#if defined(FIRST)
1111template <class T1, class T2>
1112struct S1 {
1113 T1 x;
1114};
1115#elif defined(SECOND)
1116template <class T1, class T2>
1117struct S1 {
1118 T2 x;
1119};
1120#else
1121using TemplateTypeParmType::S1;
1122// expected-error@first.h:* {{'TemplateTypeParmType::S1::x' from module 'FirstModule' is not present in definition of 'S1<T1, T2>' in module 'SecondModule'}}
1123// expected-note@second.h:* {{declaration of 'x' does not match}}
1124#endif
1125
1126#if defined(FIRST)
1127template <int ...Ts>
1128struct U2 {};
1129template <int T, int U>
1130class S2 {
1131 typedef U2<U, T> type;
1132 type x;
1133};
1134#elif defined(SECOND)
1135template <int ...Ts>
1136struct U2 {};
1137template <int T, int U>
1138class S2 {
1139 typedef U2<T, U> type;
1140 type x;
1141};
1142#else
1143using TemplateTypeParmType::S2;
1144// expected-error@first.h:* {{'TemplateTypeParmType::S2::x' from module 'FirstModule' is not present in definition of 'S2<T, U>' in module 'SecondModule'}}
1145// expected-note@second.h:* {{declaration of 'x' does not match}}
1146// expected-error@first.h:* {{'TemplateTypeParmType::S2::type' from module 'FirstModule' is not present in definition of 'S2<T, U>' in module 'SecondModule'}}
1147// expected-note@second.h:* {{declaration of 'type' does not match}}
1148#endif
Richard Trieu3b261bb72017-06-13 22:21:18 +00001149}
1150
Richard Trieu6e13ff32017-06-16 02:44:29 +00001151namespace VarDecl {
1152#if defined(FIRST)
1153struct S1 {
1154 static int x;
1155 static int y;
1156};
1157#elif defined(SECOND)
1158struct S1 {
1159 static int y;
1160 static int x;
1161};
1162#else
1163S1 s1;
1164// 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'}}
1165// expected-note@first.h:* {{but in 'FirstModule' found data member with name 'x'}}
1166#endif
1167
1168#if defined(FIRST)
1169struct S2 {
1170 static int x;
1171};
1172#elif defined(SECOND)
1173using I = int;
1174struct S2 {
1175 static I x;
1176};
1177#else
1178S2 s2;
1179// 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')}}
1180// expected-note@first.h:* {{but in 'FirstModule' found data member 'x' with different type 'int'}}
1181#endif
1182
1183#if defined(FIRST)
1184struct S3 {
1185 static const int x = 1;
1186};
1187#elif defined(SECOND)
1188struct S3 {
1189 static const int x;
1190};
1191#else
1192S3 s3;
1193// 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}}
1194// expected-note@first.h:* {{but in 'FirstModule' found data member 'x' without an initializer}}
1195#endif
1196
1197#if defined(FIRST)
1198struct S4 {
1199 static const int x = 1;
1200};
1201#elif defined(SECOND)
1202struct S4 {
1203 static const int x = 2;
1204};
1205#else
1206S4 s4;
1207// 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}}
1208// expected-note@first.h:* {{but in 'FirstModule' found data member 'x' with a different initializer}}
1209#endif
1210
1211#if defined(FIRST)
1212struct S5 {
1213 static const int x = 1;
1214};
1215#elif defined(SECOND)
1216struct S5 {
1217 static constexpr int x = 1;
1218};
1219#else
1220S5 s5;
1221// 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}}
1222// expected-note@first.h:* {{but in 'FirstModule' found data member 'x' is constexpr}}
1223#endif
1224
1225#if defined(FIRST)
1226struct S6 {
1227 static const int x = 1;
1228};
1229#elif defined(SECOND)
1230struct S6 {
1231 static const int y = 1;
1232};
1233#else
1234S6 s6;
1235// expected-error@first.h:* {{'VarDecl::S6::x' from module 'FirstModule' is not present in definition of 'VarDecl::S6' in module 'SecondModule'}}
1236// expected-note@second.h:* {{definition has no member 'x'}}
1237#endif
1238
1239#if defined(FIRST)
1240struct S7 {
1241 static const int x = 1;
1242};
1243#elif defined(SECOND)
1244struct S7 {
1245 static const unsigned x = 1;
1246};
1247#else
1248S7 s7;
1249// expected-error@first.h:* {{'VarDecl::S7::x' from module 'FirstModule' is not present in definition of 'VarDecl::S7' in module 'SecondModule'}}
1250// expected-note@second.h:* {{declaration of 'x' does not match}}
1251#endif
1252
1253#if defined(FIRST)
1254struct S8 {
1255public:
1256 static const int x = 1;
1257};
1258#elif defined(SECOND)
1259struct S8 {
1260 static const int x = 1;
1261public:
1262};
1263#else
1264S8 s8;
1265// expected-error@second.h:* {{'VarDecl::S8' has different definitions in different modules; first difference is definition in module 'SecondModule' found data member}}
1266// expected-note@first.h:* {{but in 'FirstModule' found public access specifier}}
1267#endif
1268
1269#if defined(FIRST)
1270struct S9 {
1271 static const int x = 1;
1272};
1273#elif defined(SECOND)
1274struct S9 {
1275 static int x;
1276};
1277#else
1278S9 s9;
1279// expected-error@first.h:* {{'VarDecl::S9::x' from module 'FirstModule' is not present in definition of 'VarDecl::S9' in module 'SecondModule'}}
1280// expected-note@second.h:* {{declaration of 'x' does not match}}
1281#endif
1282
1283#if defined(FIRST)
1284template <typename T>
1285struct S {
1286 struct R {
1287 void foo(T x = 0) {}
1288 };
1289};
1290#elif defined(SECOND)
1291template <typename T>
1292struct S {
1293 struct R {
1294 void foo(T x = 1) {}
1295 };
1296};
1297#else
1298void run() {
1299 S<int>::R().foo();
1300}
1301// 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}}
1302// expected-note@first.h:* {{but in 'FirstModule' found method 'foo' with 1st parameter with a different default argument}}
1303#endif
1304
1305#if defined(FIRST)
1306template <typename alpha> struct Bravo {
1307 void charlie(bool delta = false) {}
1308};
1309typedef Bravo<char> echo;
1310echo foxtrot;
1311#elif defined(SECOND)
1312template <typename alpha> struct Bravo {
1313 void charlie(bool delta = (false)) {}
1314};
1315typedef Bravo<char> echo;
1316echo foxtrot;
1317#else
1318Bravo<char> golf;
1319// 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}}
1320// expected-note@first.h:* {{but in 'FirstModule' found method 'charlie' with 1st parameter with a different default argument}}
1321#endif
1322}
1323
Richard Trieue7f7ed22017-02-22 01:11:25 +00001324// Interesting cases that should not cause errors. struct S should not error
1325// while struct T should error at the access specifier mismatch at the end.
1326namespace AllDecls {
Richard Trieu02552272017-05-02 23:58:52 +00001327#define CREATE_ALL_DECL_STRUCT(NAME, ACCESS) \
1328 typedef int INT; \
1329 struct NAME { \
1330 public: \
1331 private: \
1332 protected: \
1333 static_assert(1 == 1, "Message"); \
1334 static_assert(2 == 2); \
1335 \
1336 int x; \
1337 double y; \
1338 \
1339 INT z; \
1340 \
1341 unsigned a : 1; \
1342 unsigned b : 2 * 2 + 5 / 2; \
1343 \
1344 mutable int c = sizeof(x + y); \
1345 \
1346 void method() {} \
1347 static void static_method() {} \
1348 virtual void virtual_method() {} \
1349 virtual void pure_virtual_method() = 0; \
1350 inline void inline_method() {} \
1351 void volatile_method() volatile {} \
1352 void const_method() const {} \
1353 \
1354 typedef int typedef_int; \
1355 using using_int = int; \
1356 \
1357 void method_one_arg(int x) {} \
1358 void method_one_arg_default_argument(int x = 5 + 5) {} \
1359 void method_decayed_type(int x[5]) {} \
1360 \
1361 int constant_arr[5]; \
1362 \
1363 ACCESS: \
Richard Trieufe564052017-04-20 02:53:53 +00001364 };
1365
Richard Trieue7f7ed22017-02-22 01:11:25 +00001366#if defined(FIRST)
Richard Trieufe564052017-04-20 02:53:53 +00001367CREATE_ALL_DECL_STRUCT(S, public)
Richard Trieue7f7ed22017-02-22 01:11:25 +00001368#elif defined(SECOND)
Richard Trieufe564052017-04-20 02:53:53 +00001369CREATE_ALL_DECL_STRUCT(S, public)
Richard Trieue7f7ed22017-02-22 01:11:25 +00001370#else
Richard Trieu583e2c12017-03-04 00:08:58 +00001371S *s;
Richard Trieue7f7ed22017-02-22 01:11:25 +00001372#endif
1373
1374#if defined(FIRST)
Richard Trieufe564052017-04-20 02:53:53 +00001375CREATE_ALL_DECL_STRUCT(T, private)
Richard Trieue7f7ed22017-02-22 01:11:25 +00001376#elif defined(SECOND)
Richard Trieufe564052017-04-20 02:53:53 +00001377CREATE_ALL_DECL_STRUCT(T, public)
Richard Trieue7f7ed22017-02-22 01:11:25 +00001378#else
Richard Trieu583e2c12017-03-04 00:08:58 +00001379T *t;
Richard Trieue7f7ed22017-02-22 01:11:25 +00001380// expected-error@second.h:* {{'AllDecls::T' has different definitions in different modules; first difference is definition in module 'SecondModule' found public access specifier}}
1381// expected-note@first.h:* {{but in 'FirstModule' found private access specifier}}
1382#endif
1383}
1384
1385namespace FriendFunction {
1386#if defined(FIRST)
1387void F(int = 0);
1388struct S { friend void F(int); };
1389#elif defined(SECOND)
1390void F(int);
1391struct S { friend void F(int); };
1392#else
1393S s;
1394#endif
1395
1396#if defined(FIRST)
1397void G(int = 0);
1398struct T {
1399 friend void G(int);
1400
1401 private:
1402};
1403#elif defined(SECOND)
1404void G(int);
1405struct T {
1406 friend void G(int);
1407
1408 public:
1409};
1410#else
1411T t;
1412// expected-error@second.h:* {{'FriendFunction::T' has different definitions in different modules; first difference is definition in module 'SecondModule' found public access specifier}}
1413// expected-note@first.h:* {{but in 'FirstModule' found private access specifier}}
1414#endif
1415} // namespace FriendFunction
1416
1417namespace ImplicitDecl {
1418#if defined(FIRST)
1419struct S { };
1420void S_Constructors() {
1421 // Trigger creation of implicit contructors
1422 S foo;
1423 S bar = foo;
1424 S baz(bar);
1425}
1426#elif defined(SECOND)
1427struct S { };
1428#else
1429S s;
1430#endif
1431
1432#if defined(FIRST)
1433struct T {
1434 private:
1435};
1436void T_Constructors() {
1437 // Trigger creation of implicit contructors
1438 T foo;
1439 T bar = foo;
1440 T baz(bar);
1441}
1442#elif defined(SECOND)
1443struct T {
1444 public:
1445};
1446#else
1447T t;
1448// expected-error@first.h:* {{'ImplicitDecl::T' has different definitions in different modules; first difference is definition in module 'FirstModule' found private access specifier}}
1449// expected-note@second.h:* {{but in 'SecondModule' found public access specifier}}
1450#endif
1451
1452} // namespace ImplicitDelc
1453
1454namespace TemplatedClass {
1455#if defined(FIRST)
1456template <class>
1457struct S {};
1458#elif defined(SECOND)
1459template <class>
1460struct S {};
1461#else
1462S<int> s;
1463#endif
1464
1465#if defined(FIRST)
1466template <class>
1467struct T {
1468 private:
1469};
1470#elif defined(SECOND)
1471template <class>
1472struct T {
1473 public:
1474};
1475#else
1476T<int> t;
1477// expected-error@second.h:* {{'TemplatedClass::T' has different definitions in different modules; first difference is definition in module 'SecondModule' found public access specifier}}
1478// expected-note@first.h:* {{but in 'FirstModule' found private access specifier}}
1479#endif
1480} // namespace TemplatedClass
1481
1482namespace TemplateClassWithField {
1483#if defined(FIRST)
1484template <class A>
1485struct S {
1486 A a;
1487};
1488#elif defined(SECOND)
1489template <class A>
1490struct S {
1491 A a;
1492};
1493#else
1494S<int> s;
1495#endif
1496
1497#if defined(FIRST)
1498template <class A>
1499struct T {
1500 A a;
1501
1502 private:
1503};
1504#elif defined(SECOND)
1505template <class A>
1506struct T {
1507 A a;
1508
1509 public:
1510};
1511#else
1512T<int> t;
1513// expected-error@second.h:* {{'TemplateClassWithField::T' has different definitions in different modules; first difference is definition in module 'SecondModule' found public access specifier}}
1514// expected-note@first.h:* {{but in 'FirstModule' found private access specifier}}
1515#endif
1516} // namespace TemplateClassWithField
1517
1518namespace TemplateClassWithTemplateField {
1519#if defined(FIRST)
1520template <class A>
1521class WrapperS;
1522template <class A>
1523struct S {
1524 WrapperS<A> a;
1525};
1526#elif defined(SECOND)
1527template <class A>
1528class WrapperS;
1529template <class A>
1530struct S {
1531 WrapperS<A> a;
1532};
1533#else
1534template <class A>
1535class WrapperS{};
1536S<int> s;
1537#endif
1538
1539#if defined(FIRST)
1540template <class A>
1541class WrapperT;
1542template <class A>
1543struct T {
1544 WrapperT<A> a;
1545
1546 public:
1547};
1548#elif defined(SECOND)
1549template <class A>
1550class WrapperT;
1551template <class A>
1552struct T {
1553 WrapperT<A> a;
1554
1555 private:
1556};
1557#else
1558template <class A>
1559class WrapperT{};
1560T<int> t;
1561// expected-error@second.h:* {{'TemplateClassWithTemplateField::T' has different definitions in different modules; first difference is definition in module 'SecondModule' found private access specifier}}
1562// expected-note@first.h:* {{but in 'FirstModule' found public access specifier}}
1563#endif
1564} // namespace TemplateClassWithTemplateField
1565
1566namespace EnumWithForwardDeclaration {
1567#if defined(FIRST)
1568enum E : int;
1569struct S {
1570 void get(E) {}
1571};
1572#elif defined(SECOND)
1573enum E : int { A, B };
1574struct S {
1575 void get(E) {}
1576};
1577#else
1578S s;
1579#endif
1580
1581#if defined(FIRST)
1582struct T {
1583 void get(E) {}
1584 public:
1585};
1586#elif defined(SECOND)
1587struct T {
1588 void get(E) {}
1589 private:
1590};
1591#else
1592T t;
1593// expected-error@second.h:* {{'EnumWithForwardDeclaration::T' has different definitions in different modules; first difference is definition in module 'SecondModule' found private access specifier}}
1594// expected-note@first.h:* {{but in 'FirstModule' found public access specifier}}
1595#endif
1596} // namespace EnumWithForwardDeclaration
1597
1598namespace StructWithForwardDeclaration {
1599#if defined(FIRST)
1600struct P {};
1601struct S {
1602 struct P *ptr;
1603};
1604#elif defined(SECOND)
1605struct S {
1606 struct P *ptr;
1607};
1608#else
1609S s;
1610#endif
1611
1612#if defined(FIRST)
1613struct Q {};
1614struct T {
1615 struct Q *ptr;
1616 public:
1617};
1618#elif defined(SECOND)
1619struct T {
1620 struct Q *ptr;
1621 private:
1622};
1623#else
1624T t;
1625// expected-error@second.h:* {{'StructWithForwardDeclaration::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 StructWithForwardDeclaration
1629
1630namespace StructWithForwardDeclarationNoDefinition {
1631#if defined(FIRST)
1632struct P;
1633struct S {
1634 struct P *ptr;
1635};
1636#elif defined(SECOND)
1637struct S {
1638 struct P *ptr;
1639};
1640#else
1641S s;
1642#endif
1643
1644#if defined(FIRST)
1645struct Q;
1646struct T {
1647 struct Q *ptr;
1648
1649 public:
1650};
1651#elif defined(SECOND)
1652struct T {
1653 struct Q *ptr;
1654
1655 private:
1656};
1657#else
1658T t;
1659// expected-error@second.h:* {{'StructWithForwardDeclarationNoDefinition::T' has different definitions in different modules; first difference is definition in module 'SecondModule' found private access specifier}}
1660// expected-note@first.h:* {{but in 'FirstModule' found public access specifier}}
1661#endif
1662} // namespace StructWithForwardDeclarationNoDefinition
1663
Richard Trieufe564052017-04-20 02:53:53 +00001664namespace LateParsedDefaultArgument {
1665#if defined(FIRST)
1666template <typename T>
1667struct S {
1668 struct R {
1669 void foo(T x = 0) {}
1670 };
1671};
1672#elif defined(SECOND)
1673#else
1674void run() {
1675 S<int>::R().foo();
1676}
1677#endif
1678}
1679
1680namespace LateParsedDefaultArgument {
1681#if defined(FIRST)
1682template <typename alpha> struct Bravo {
1683 void charlie(bool delta = false) {}
1684};
1685typedef Bravo<char> echo;
1686echo foxtrot;
1687
1688Bravo<char> golf;
1689#elif defined(SECOND)
1690#else
1691#endif
1692}
1693
Richard Trieu157ed942017-04-28 22:03:28 +00001694namespace DifferentParameterNameInTemplate {
1695#if defined(FIRST) || defined(SECOND)
1696template <typename T>
1697struct S {
1698 typedef T Type;
1699
1700 static void Run(const Type *name_one);
1701};
1702
1703template <typename T>
1704void S<T>::Run(const T *name_two) {}
1705
1706template <typename T>
1707struct Foo {
1708 ~Foo() { Handler::Run(nullptr); }
1709 Foo() {}
1710
1711 class Handler : public S<T> {};
1712
1713 void Get(typename Handler::Type *x = nullptr) {}
1714 void Add() { Handler::Run(nullptr); }
1715};
1716#endif
1717
1718#if defined(FIRST)
1719struct Beta;
1720
1721struct Alpha {
1722 Alpha();
1723 void Go() { betas.Get(); }
1724 Foo<Beta> betas;
1725};
1726
1727#elif defined(SECOND)
1728struct Beta {};
1729
1730struct BetaHelper {
1731 void add_Beta() { betas.Add(); }
1732 Foo<Beta> betas;
1733};
1734
1735#else
1736Alpha::Alpha() {}
1737#endif
1738}
1739
Richard Trieu02552272017-05-02 23:58:52 +00001740namespace ParameterTest {
1741#if defined(FIRST)
1742class X {};
1743template <typename G>
1744class S {
1745 public:
1746 typedef G Type;
1747 static inline G *Foo(const G *a, int * = nullptr);
1748};
1749
1750template<typename G>
1751G* S<G>::Foo(const G* aaaa, int*) {}
1752#elif defined(SECOND)
1753template <typename G>
1754class S {
1755 public:
1756 typedef G Type;
1757 static inline G *Foo(const G *a, int * = nullptr);
1758};
1759
1760template<typename G>
1761G* S<G>::Foo(const G* asdf, int*) {}
1762#else
1763S<X> s;
1764#endif
1765}
1766
Richard Trieub35ef2a2017-05-09 03:24:34 +00001767namespace MultipleTypedefs {
1768#if defined(FIRST)
1769typedef int B1;
1770typedef B1 A1;
1771struct S1 {
1772 A1 x;
1773};
1774#elif defined(SECOND)
1775typedef int A1;
1776struct S1 {
1777 A1 x;
1778};
1779#else
1780S1 s1;
1781#endif
1782
1783#if defined(FIRST)
1784struct T2 { int x; };
1785typedef T2 B2;
1786typedef B2 A2;
1787struct S2 {
1788 T2 x;
1789};
1790#elif defined(SECOND)
1791struct T2 { int x; };
1792typedef T2 A2;
1793struct S2 {
1794 T2 x;
1795};
1796#else
1797S2 s2;
1798#endif
Richard Trieu3e03d3e2017-06-29 22:53:04 +00001799
1800#if defined(FIRST)
1801using A3 = const int;
1802using B3 = volatile A3;
1803struct S3 {
1804 B3 x = 1;
1805};
1806#elif defined(SECOND)
1807using A3 = volatile const int;
1808using B3 = A3;
1809struct S3 {
1810 B3 x = 1;
1811};
1812#else
1813S3 s3;
1814#endif
Richard Trieub35ef2a2017-05-09 03:24:34 +00001815}
Richard Trieu02552272017-05-02 23:58:52 +00001816
Richard Trieue7f7ed22017-02-22 01:11:25 +00001817// Keep macros contained to one file.
1818#ifdef FIRST
1819#undef FIRST
1820#endif
1821#ifdef SECOND
1822#undef SECOND
1823#endif