blob: 0cebc10ade4034973d7e8ebb6876110c3ae25df6 [file] [log] [blame]
Richard Smith762bb9d2011-10-13 22:29:44 +00001// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
Sean Hunt1f2f3842011-05-17 00:19:05 +00002
3struct non_trivial {
4 non_trivial();
5 non_trivial(const non_trivial&);
6 non_trivial& operator = (const non_trivial&);
7 ~non_trivial();
8};
9
Richard Smith6c4c36c2012-03-30 20:53:28 +000010union bad_union {
11 non_trivial nt; // expected-note {{non-trivial default constructor}}
Sean Hunt1f2f3842011-05-17 00:19:05 +000012};
Douglas Gregore4e68d42012-02-15 19:33:52 +000013bad_union u; // expected-error {{call to implicitly-deleted default constructor}}
Richard Smith6c4c36c2012-03-30 20:53:28 +000014union bad_union2 { // expected-note {{all data members are const-qualified}}
Sean Hunt1f2f3842011-05-17 00:19:05 +000015 const int i;
16};
Douglas Gregore4e68d42012-02-15 19:33:52 +000017bad_union2 u2; // expected-error {{call to implicitly-deleted default constructor}}
Sean Hunt1f2f3842011-05-17 00:19:05 +000018
Richard Smith6c4c36c2012-03-30 20:53:28 +000019struct bad_anon {
Sean Hunt1f2f3842011-05-17 00:19:05 +000020 union {
Richard Smith6c4c36c2012-03-30 20:53:28 +000021 non_trivial nt; // expected-note {{non-trivial default constructor}}
Sean Hunt1f2f3842011-05-17 00:19:05 +000022 };
23};
Douglas Gregore4e68d42012-02-15 19:33:52 +000024bad_anon a; // expected-error {{call to implicitly-deleted default constructor}}
Richard Smith6c4c36c2012-03-30 20:53:28 +000025struct bad_anon2 {
26 union { // expected-note {{all data members of an anonymous union member are const-qualified}}
Sean Hunt1f2f3842011-05-17 00:19:05 +000027 const int i;
28 };
29};
Douglas Gregore4e68d42012-02-15 19:33:52 +000030bad_anon2 a2; // expected-error {{call to implicitly-deleted default constructor}}
Sean Hunt1f2f3842011-05-17 00:19:05 +000031
32// This would be great except that we implement
33union good_union {
34 const int i;
35 float f;
36};
37good_union gu;
38struct good_anon {
39 union {
40 const int i;
41 float f;
42 };
43};
44good_anon ga;
45
46struct good : non_trivial {
47 non_trivial nt;
48};
49good g;
Sean Huntf1922d22011-05-17 20:44:39 +000050
Richard Smith6c4c36c2012-03-30 20:53:28 +000051struct bad_const {
52 const good g; // expected-note {{field 'g' of const-qualified type 'const good' would not be initialized}}
Sean Huntf1922d22011-05-17 20:44:39 +000053};
Douglas Gregore4e68d42012-02-15 19:33:52 +000054bad_const bc; // expected-error {{call to implicitly-deleted default constructor}}
Sean Huntf1922d22011-05-17 20:44:39 +000055
56struct good_const {
57 const non_trivial nt;
58};
59good_const gc;
60
61struct no_default {
Richard Smith5bdaac52012-04-02 20:59:25 +000062 no_default() = delete; // expected-note 3{{deleted here}}
Sean Huntf1922d22011-05-17 20:44:39 +000063};
64struct no_dtor {
Richard Smith6c4c36c2012-03-30 20:53:28 +000065 ~no_dtor() = delete; // expected-note 2{{deleted here}}
Sean Huntf1922d22011-05-17 20:44:39 +000066};
67
Richard Smith6c4c36c2012-03-30 20:53:28 +000068struct bad_field_default {
69 no_default nd; // expected-note {{field 'nd' has a deleted default constructor}}
Sean Huntf1922d22011-05-17 20:44:39 +000070};
Douglas Gregore4e68d42012-02-15 19:33:52 +000071bad_field_default bfd; // expected-error {{call to implicitly-deleted default constructor}}
Richard Smith6c4c36c2012-03-30 20:53:28 +000072struct bad_base_default : no_default { // expected-note {{base class 'no_default' has a deleted default constructor}}
Sean Huntf1922d22011-05-17 20:44:39 +000073};
Douglas Gregore4e68d42012-02-15 19:33:52 +000074bad_base_default bbd; // expected-error {{call to implicitly-deleted default constructor}}
Sean Huntf1922d22011-05-17 20:44:39 +000075
Richard Smith6c4c36c2012-03-30 20:53:28 +000076struct bad_field_dtor {
77 no_dtor nd; // expected-note {{field 'nd' has a deleted destructor}}
Sean Huntf1922d22011-05-17 20:44:39 +000078};
Douglas Gregore4e68d42012-02-15 19:33:52 +000079bad_field_dtor bfx; // expected-error {{call to implicitly-deleted default constructor}}
Richard Smith6c4c36c2012-03-30 20:53:28 +000080struct bad_base_dtor : no_dtor { // expected-note {{base class 'no_dtor' has a deleted destructor}}
Sean Huntf1922d22011-05-17 20:44:39 +000081};
Douglas Gregore4e68d42012-02-15 19:33:52 +000082bad_base_dtor bbx; // expected-error {{call to implicitly-deleted default constructor}}
Sean Huntf1922d22011-05-17 20:44:39 +000083
84struct ambiguous_default {
85 ambiguous_default();
86 ambiguous_default(int = 2);
87};
Richard Smith6c4c36c2012-03-30 20:53:28 +000088struct has_amb_field {
89 ambiguous_default ad; // expected-note {{field 'ad' has multiple default constructors}}
Sean Huntf1922d22011-05-17 20:44:39 +000090};
Douglas Gregore4e68d42012-02-15 19:33:52 +000091has_amb_field haf; // expected-error {{call to implicitly-deleted default constructor}}
Sean Huntf1922d22011-05-17 20:44:39 +000092
Sean Huntf1922d22011-05-17 20:44:39 +000093class inaccessible_default {
94 inaccessible_default();
95};
Richard Smith6c4c36c2012-03-30 20:53:28 +000096struct has_inacc_field {
97 inaccessible_default id; // expected-note {{field 'id' has an inaccessible default constructor}}
Sean Huntf1922d22011-05-17 20:44:39 +000098};
Douglas Gregore4e68d42012-02-15 19:33:52 +000099has_inacc_field hif; // expected-error {{call to implicitly-deleted default constructor}}
Sean Huntf1922d22011-05-17 20:44:39 +0000100
101class friend_default {
102 friend struct has_friend;
103 friend_default();
104};
105struct has_friend {
106 friend_default fd;
107};
108has_friend hf;
109
Richard Smith6c4c36c2012-03-30 20:53:28 +0000110struct defaulted_delete {
Richard Smith5bdaac52012-04-02 20:59:25 +0000111 no_default nd; // expected-note {{because field 'nd' has a deleted default constructor}}
112 defaulted_delete() = default; // expected-note{{implicitly deleted here}}
Sean Huntf1922d22011-05-17 20:44:39 +0000113};
Douglas Gregore4e68d42012-02-15 19:33:52 +0000114defaulted_delete dd; // expected-error {{call to implicitly-deleted default constructor}}
Sean Huntf1922d22011-05-17 20:44:39 +0000115
116struct late_delete {
117 no_default nd;
118 late_delete();
119};
120late_delete::late_delete() = default; // expected-error {{would delete it}}
Richard Smith16ee8192011-09-18 00:06:34 +0000121
122// See also rdar://problem/8125400.
123namespace empty {
Douglas Gregor221c27f2012-02-24 21:25:53 +0000124 static union {};
125 static union { union {}; };
Richard Smith16ee8192011-09-18 00:06:34 +0000126 static union { struct {}; };
Douglas Gregor221c27f2012-02-24 21:25:53 +0000127 static union { union { union {}; }; };
Richard Smith16ee8192011-09-18 00:06:34 +0000128 static union { union { struct {}; }; };
Douglas Gregor221c27f2012-02-24 21:25:53 +0000129 static union { struct { union {}; }; };
Richard Smith16ee8192011-09-18 00:06:34 +0000130 static union { struct { struct {}; }; };
131}