p5-0x.cpp revision 7a614d8380297fcd2bc23986241905d97222948c
1// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++0x
2
3struct DefaultedDefCtor1 {};
4struct DefaultedDefCtor2 { DefaultedDefCtor2() = default; };
5struct DeletedDefCtor { DeletedDefCtor() = delete; DeletedDefCtor(int); };
6class PrivateDefCtor { PrivateDefCtor() = default; public: PrivateDefCtor(int); };
7struct DeletedDtor { ~DeletedDtor() = delete; };
8class PrivateDtor { ~PrivateDtor() = default; };
9class Friend {
10  Friend() = default; ~Friend() = default;
11  friend struct NotDeleted6c;
12  friend struct NotDeleted7i;
13  friend struct NotDeleted7j;
14  friend struct NotDeleted7k;
15};
16struct UserProvidedDefCtor { UserProvidedDefCtor() {} };
17int n;
18
19
20// A defaulted default constructor for a class X is defined as deleted if:
21
22// - X is a union-like class that has a variant member with a non-trivial
23// default constructor,
24union Deleted1a { UserProvidedDefCtor u; }; // expected-note {{deleted here}}
25Deleted1a d1a; // expected-error {{deleted constructor}}
26// FIXME: treating this as having a deleted default constructor is probably a
27// bug in the standard.
28union Deleted1b { UserProvidedDefCtor u = UserProvidedDefCtor(); }; // expected-note {{deleted here}}
29Deleted1b d1b; // expected-error {{deleted constructor}}
30union NotDeleted1a { DefaultedDefCtor1 nu; };
31NotDeleted1a nd1a;
32// FIXME: clang implements the pre-FDIS rule, under which DefaultedDefCtor2's
33// default constructor is non-trivial.
34union NotDeleted1b { DefaultedDefCtor2 nu; }; // unexpected-note {{deleted here}}
35NotDeleted1b nd1b; // unexpected-error {{deleted constructor}}
36
37// - any non-static data member with no brace-or-equal-initializer is of
38// reference type,
39class Deleted2a { Deleted2a() = default; int &a; }; // expected-note {{deleted here}}
40Deleted2a d2a; // expected-error {{deleted constructor}}
41class NotDeleted2a { int &a = n; };
42NotDeleted2a nd2a;
43class NotDeleted2b { int &a = error; }; // expected-error {{undeclared identifier}}
44NotDeleted2b nd2b;
45
46// - any non-variant non-static data member of const qualified type (or array
47// thereof) with no brace-or-equal-initializer does not have a user-provided
48// default constructor,
49class Deleted3a { const int a; }; // expected-note {{here}} \
50                                     expected-warning {{does not declare any constructor}} \
51                                     expected-note {{will never be initialized}}
52Deleted3a d3a; // expected-error {{deleted constructor}}
53class Deleted3b { const DefaultedDefCtor1 a[42]; }; // expected-note {{here}}
54Deleted3b d3b; // expected-error {{deleted constructor}}
55// FIXME: clang implements the pre-FDIS rule, under which DefaultedDefCtor2's
56// default constructor is user-provided.
57class Deleted3c { const DefaultedDefCtor2 a; }; // desired-note {{here}}
58Deleted3c d3c; // desired-error {{deleted constructor}}
59class NotDeleted3a { const int a = 0; };
60NotDeleted3a nd3a;
61class NotDeleted3b { const DefaultedDefCtor1 a[42] = {}; };
62NotDeleted3b nd3b;
63class NotDeleted3c { const DefaultedDefCtor2 a = DefaultedDefCtor2(); };
64NotDeleted3c nd3c;
65union NotDeleted3d { const int a; int b; };
66NotDeleted3d nd3d;
67// FIXME: this class should not have a deleted default constructor.
68union NotDeleted3e { const DefaultedDefCtor1 a[42]; int b; }; // unexpected-note {{here}}
69NotDeleted3e nd3e; // unexpected-error {{deleted constructor}}
70// FIXME: clang implements the pre-FDIS rule, under which DefaultedDefCtor2 is
71// non-trivial.
72union NotDeleted3f { const DefaultedDefCtor2 a; int b; }; // unexpected-note {{here}}
73NotDeleted3f nd3f; // unexpected-error {{deleted constructor}}
74
75// - X is a union and all of its variant members are of const-qualified type (or
76// array thereof),
77union Deleted4a { const int a; const int b; const UserProvidedDefCtor c; }; // expected-note {{here}}
78Deleted4a d4a; // expected-error {{deleted constructor}}
79union Deleted4b { const int a; int b; };
80Deleted4b d4b;
81
82// - X is a non-union class and all members of any anonymous union member are of
83// const-qualified type (or array thereof),
84struct Deleted5a { union { const int a; }; union { int b; }; }; // expected-note {{here}}
85Deleted5a d5a; // expected-error {{deleted constructor}}
86struct Deleted5b { union { const int a; int b; }; union { const int c; int d; }; };
87Deleted5b d5b;
88
89// - any direct or virtual base class, or non-static data member with no
90// brace-or-equal-initializer, has class type M (or array thereof) and either
91// M has no default constructor or overload resolution as applied to M's default
92// constructor results in an ambiguity or in a function that is deleted or
93// inaccessible from the defaulted default constructor, or
94struct Deleted6a : Deleted2a {}; // expected-note {{here}}
95Deleted6a d6a; // expected-error {{deleted constructor}}
96struct Deleted6b : virtual Deleted2a {}; // expected-note {{here}}
97Deleted6b d6b; // expected-error {{deleted constructor}}
98struct Deleted6c { Deleted2a a; }; // expected-note {{here}}
99Deleted6c d6c; // expected-error {{deleted constructor}}
100struct Deleted6d { DeletedDefCtor a; }; // expected-note {{here}}
101Deleted6d d6d; // expected-error {{deleted constructor}}
102struct NotDeleted6a { DeletedDefCtor a = 0; };
103NotDeleted6a nd6a;
104struct Deleted6e { PrivateDefCtor a; }; // expected-note {{here}}
105Deleted6e d6e; // expected-error {{deleted constructor}}
106struct NotDeleted6b { PrivateDefCtor a = 0; };
107NotDeleted6b nd6b;
108struct NotDeleted6c { Friend a; };
109NotDeleted6c nd6c;
110
111// - any direct or virtual base class or non-static data member has a type with
112// a destructor that is deleted or inaccessible from the defaulted default
113// constructor.
114struct Deleted7a : DeletedDtor {}; // expected-note {{here}}
115Deleted7a d7a; // expected-error {{deleted constructor}}
116struct Deleted7b : virtual DeletedDtor {}; // expected-note {{here}}
117Deleted7b d7b; // expected-error {{deleted constructor}}
118struct Deleted7c { DeletedDtor a; }; // expected-note {{here}}
119Deleted7c d7c; // expected-error {{deleted constructor}}
120struct Deleted7d { DeletedDtor a = {}; }; // expected-note {{here}}
121Deleted7d d7d; // expected-error {{deleted constructor}}
122struct Deleted7e : PrivateDtor {}; // expected-note {{here}}
123Deleted7e d7e; // expected-error {{deleted constructor}}
124struct Deleted7f : virtual PrivateDtor {}; // expected-note {{here}}
125Deleted7f d7f; // expected-error {{deleted constructor}}
126struct Deleted7g { PrivateDtor a; }; // expected-note {{here}}
127Deleted7g d7g; // expected-error {{deleted constructor}}
128struct Deleted7h { PrivateDtor a = {}; }; // expected-note {{here}}
129Deleted7h d7h; // expected-error {{deleted constructor}}
130struct NotDeleted7i : Friend {};
131NotDeleted7i d7i;
132struct NotDeleted7j : virtual Friend {};
133NotDeleted7j d7j;
134struct NotDeleted7k { Friend a; };
135NotDeleted7k d7k;
136
137
138class Trivial { static const int n = 42; };
139static_assert(__has_trivial_constructor(Trivial), "Trivial is nontrivial");
140
141// A default constructor is trivial if it is not user-provided and if:
142class NonTrivialDefCtor1 { NonTrivialDefCtor1(); };
143static_assert(!__has_trivial_constructor(NonTrivialDefCtor1), "NonTrivialDefCtor1 is trivial");
144
145// - its class has no virtual functions (10.3) and no virtual base classes (10.1), and
146class NonTrivialDefCtor2 { virtual void f(); };
147static_assert(!__has_trivial_constructor(NonTrivialDefCtor2), "NonTrivialDefCtor2 is trivial");
148class NonTrivialDefCtor3 : virtual Trivial {};
149static_assert(!__has_trivial_constructor(NonTrivialDefCtor3), "NonTrivialDefCtor3 is trivial");
150
151// - no non-static data member of its class has a brace-or-equal-initializer, and
152class NonTrivialDefCtor4 { int m = 52; };
153static_assert(!__has_trivial_constructor(NonTrivialDefCtor4), "NonTrivialDefCtor4 is trivial");
154
155// - all the direct base classes of its class have trivial default constructors, and
156class NonTrivialDefCtor5 : NonTrivialDefCtor1 {};
157static_assert(!__has_trivial_constructor(NonTrivialDefCtor5), "NonTrivialDefCtor5 is trivial");
158
159// - for all the non-static data members of its class that are of class type (or array thereof), each such class
160// has a trivial default constructor.
161class NonTrivialDefCtor6 { NonTrivialDefCtor1 t; };
162static_assert(!__has_trivial_constructor(NonTrivialDefCtor6), "NonTrivialDefCtor5 is trivial");
163
164// Otherwise, the default constructor is non-trivial.
165class Trivial2 { Trivial2() = delete; };
166//static_assert(__has_trivial_constructor(Trivial2), "NonTrivialDefCtor2 is trivial");
167// FIXME: clang implements the pre-FDIS rule, under which this class is non-trivial.
168static_assert(!__has_trivial_constructor(Trivial2), "NonTrivialDefCtor2 is trivial");
169
170class Trivial3 { Trivial3() = default; };
171//static_assert(__has_trivial_constructor(Trivial3), "NonTrivialDefCtor3 is trivial");
172// FIXME: clang implements the pre-FDIS rule, under which this class is non-trivial.
173static_assert(!__has_trivial_constructor(Trivial3), "NonTrivialDefCtor3 is trivial");
174