blob: 211f11cc59778af8cf56b7c7b97215f37ce6ed23 [file] [log] [blame]
Richard Smith41be6732011-10-14 20:48:27 +00001// RUN: %clang_cc1 -fsyntax-only -std=c++11 -Wc++98-compat -verify %s
Richard Smithebaf0e62011-10-18 20:49:44 +00002// RUN: %clang_cc1 -fsyntax-only -std=c++11 %s
Richard Smith84ef8992011-10-14 20:41:13 +00003
Richard Smithd390de92012-02-25 10:20:59 +00004namespace std { struct type_info; }
5
Richard Smith84ef8992011-10-14 20:41:13 +00006template<typename ...T> // expected-warning {{variadic templates are incompatible with C++98}}
7class Variadic1 {};
8
9template<template<typename> class ...T> // expected-warning {{variadic templates are incompatible with C++98}}
10class Variadic2 {};
11
12template<int ...I> // expected-warning {{variadic templates are incompatible with C++98}}
13class Variadic3 {};
Richard Smith41be6732011-10-14 20:48:27 +000014
15int alignas(8) with_alignas; // expected-warning {{'alignas' is incompatible with C++98}}
16int with_attribute [[ ]]; // expected-warning {{attributes are incompatible with C++98}}
Richard Smith661a9962011-10-15 01:18:56 +000017
18void Literals() {
19 (void)u8"str"; // expected-warning {{unicode literals are incompatible with C++98}}
20 (void)u"str"; // expected-warning {{unicode literals are incompatible with C++98}}
21 (void)U"str"; // expected-warning {{unicode literals are incompatible with C++98}}
22 (void)u'x'; // expected-warning {{unicode literals are incompatible with C++98}}
23 (void)U'x'; // expected-warning {{unicode literals are incompatible with C++98}}
24
25 (void)u8R"X(str)X"; // expected-warning {{raw string literals are incompatible with C++98}}
26 (void)uR"X(str)X"; // expected-warning {{raw string literals are incompatible with C++98}}
27 (void)UR"X(str)X"; // expected-warning {{raw string literals are incompatible with C++98}}
28 (void)R"X(str)X"; // expected-warning {{raw string literals are incompatible with C++98}}
29 (void)LR"X(str)X"; // expected-warning {{raw string literals are incompatible with C++98}}
30}
31
32template<typename T> struct S {};
Richard Smith7fe62082011-10-15 05:09:34 +000033namespace TemplateParsing {
34 S<::S<void> > s; // expected-warning {{'<::' is treated as digraph '<:' (aka '[') followed by ':' in C++98}}
35 S< ::S<void>> t; // expected-warning {{consecutive right angle brackets are incompatible with C++98 (use '> >')}}
36}
37
38void Lambda() {
Richard Smithb9c64d82012-02-16 20:41:22 +000039 []{}(); // expected-warning {{lambda expressions are incompatible with C++98}}
Richard Smith7fe62082011-10-15 05:09:34 +000040}
41
Sebastian Redl3e280b52012-03-18 22:25:45 +000042int InitList(int i = {}) { // expected-warning {{generalized initializer lists are incompatible with C++98}} \
43 // expected-warning {{scalar initialized from empty initializer list is incompatible with C++98}}
Sebastian Redl56a04282012-02-11 23:51:08 +000044 (void)new int {}; // expected-warning {{generalized initializer lists are incompatible with C++98}} \
45 // expected-warning {{scalar initialized from empty initializer list is incompatible with C++98}}
Sebastian Redl6dc00f62012-02-12 18:41:05 +000046 (void)int{}; // expected-warning {{generalized initializer lists are incompatible with C++98}} \
47 // expected-warning {{scalar initialized from empty initializer list is incompatible with C++98}}
Richard Smith6b130222011-10-18 21:39:00 +000048 int x { 0 }; // expected-warning {{generalized initializer lists are incompatible with C++98}}
Richard Smithdbe01bb2012-02-26 23:49:01 +000049 S<int> s = {}; // ok, aggregate
50 s = {}; // expected-warning {{generalized initializer lists are incompatible with C++98}}
Richard Smith6b130222011-10-18 21:39:00 +000051 return { 0 }; // expected-warning {{generalized initializer lists are incompatible with C++98}}
Richard Smith7fe62082011-10-15 05:09:34 +000052}
53
Richard Smith5cc2c6e2012-03-05 04:02:15 +000054int operator"" _hello(const char *); // expected-warning {{literal operators are incompatible with C++98}}
Richard Smith7fe62082011-10-15 05:09:34 +000055
56enum EnumFixed : int { // expected-warning {{enumeration types with a fixed underlying type are incompatible with C++98}}
57};
58
59enum class EnumScoped { // expected-warning {{scoped enumerations are incompatible with C++98}}
60};
61
62void Deleted() = delete; // expected-warning {{deleted function definitions are incompatible with C++98}}
63struct Defaulted {
64 Defaulted() = default; // expected-warning {{defaulted function definitions are incompatible with C++98}}
65};
66
67int &&RvalueReference = 0; // expected-warning {{rvalue references are incompatible with C++98}}
68struct RefQualifier {
69 void f() &; // expected-warning {{reference qualifiers on functions are incompatible with C++98}}
70};
71
72auto f() -> int; // expected-warning {{trailing return types are incompatible with C++98}}
73
74void RangeFor() {
75 int xs[] = {1, 2, 3};
76 for (int &a : xs) { // expected-warning {{range-based for loop is incompatible with C++98}}
77 }
78}
79
80struct InClassInit {
81 int n = 0; // expected-warning {{in-class initialization of non-static data members is incompatible with C++98}}
82};
83
84struct OverrideControlBase {
85 virtual void f();
86 virtual void g();
87};
88struct OverrideControl final : OverrideControlBase { // expected-warning {{'final' keyword is incompatible with C++98}}
89 virtual void f() override; // expected-warning {{'override' keyword is incompatible with C++98}}
90 virtual void g() final; // expected-warning {{'final' keyword is incompatible with C++98}}
91};
92
93using AliasDecl = int; // expected-warning {{alias declarations are incompatible with C++98}}
94template<typename T> using AliasTemplate = T; // expected-warning {{alias declarations are incompatible with C++98}}
95
Richard Smithebaf0e62011-10-18 20:49:44 +000096inline namespace InlineNS { // expected-warning {{inline namespaces are incompatible with C++98}}
Richard Smith7fe62082011-10-15 05:09:34 +000097}
Richard Smith0aa86c02011-10-15 05:42:01 +000098
99auto auto_deduction = 0; // expected-warning {{'auto' type specifier is incompatible with C++98}}
100int *p = new auto(0); // expected-warning {{'auto' type specifier is incompatible with C++98}}
Richard Smith841804b2011-10-17 23:06:20 +0000101
102const int align_of = alignof(int); // expected-warning {{alignof expressions are incompatible with C++98}}
103char16_t c16 = 0; // expected-warning {{'char16_t' type specifier is incompatible with C++98}}
104char32_t c32 = 0; // expected-warning {{'char32_t' type specifier is incompatible with C++98}}
105constexpr int const_expr = 0; // expected-warning {{'constexpr' specifier is incompatible with C++98}}
106decltype(const_expr) decl_type = 0; // expected-warning {{'decltype' type specifier is incompatible with C++98}}
Richard Smith39304fa2012-02-24 18:10:23 +0000107__decltype(const_expr) decl_type2 = 0; // ok
Richard Smith841804b2011-10-17 23:06:20 +0000108void no_except() noexcept; // expected-warning {{noexcept specifications are incompatible with C++98}}
109bool no_except_expr = noexcept(1 + 1); // expected-warning {{noexcept expressions are incompatible with C++98}}
110void *null = nullptr; // expected-warning {{'nullptr' is incompatible with C++98}}
111static_assert(true, "!"); // expected-warning {{static_assert declarations are incompatible with C++98}}
Richard Smithebaf0e62011-10-18 20:49:44 +0000112
113struct InhCtorBase {
114 InhCtorBase(int);
115};
116struct InhCtorDerived : InhCtorBase {
117 using InhCtorBase::InhCtorBase; // expected-warning {{inherited constructors are incompatible with C++98}}
118};
119
120struct FriendMember {
121 static void MemberFn();
122 friend void FriendMember::MemberFn(); // expected-warning {{friend declaration naming a member of the declaring class is incompatible with C++98}}
123};
124
125struct DelegCtor {
126 DelegCtor(int) : DelegCtor() {} // expected-warning {{delegating constructors are incompatible with C++98}}
127 DelegCtor();
128};
129
130template<int n = 0> void DefaultFuncTemplateArg(); // expected-warning {{default template arguments for a function template are incompatible with C++98}}
131
132template<typename T> int TemplateFn(T) { return 0; }
133void LocalTemplateArg() {
134 struct S {};
135 TemplateFn(S()); // expected-warning {{local type 'S' as template argument is incompatible with C++98}}
136}
137struct {} obj_of_unnamed_type; // expected-note {{here}}
138int UnnamedTemplateArg = TemplateFn(obj_of_unnamed_type); // expected-warning {{unnamed type as template argument is incompatible with C++98}}
139
140namespace RedundantParensInAddressTemplateParam {
141 int n;
142 template<int*p> struct S {};
143 S<(&n)> s; // expected-warning {{redundant parentheses surrounding address non-type template argument are incompatible with C++98}}
144 S<(((&n)))> t; // expected-warning {{redundant parentheses surrounding address non-type template argument are incompatible with C++98}}
145}
146
147namespace TemplateSpecOutOfScopeNs {
148 template<typename T> struct S {}; // expected-note {{here}}
149}
150template<> struct TemplateSpecOutOfScopeNs::S<char> {}; // expected-warning {{class template specialization of 'S' outside namespace 'TemplateSpecOutOfScopeNs' is incompatible with C++98}}
151
152struct Typename {
153 template<typename T> struct Inner {};
154};
155typename ::Typename TypenameOutsideTemplate(); // expected-warning {{use of 'typename' outside of a template is incompatible with C++98}}
156Typename::template Inner<int> TemplateOutsideTemplate(); // expected-warning {{use of 'template' keyword outside of a template is incompatible with C++98}}
157
158struct TrivialButNonPOD {
159 int f(int);
160private:
161 int k;
162};
163void Ellipsis(int n, ...);
164void TrivialButNonPODThroughEllipsis() {
165 Ellipsis(1, TrivialButNonPOD()); // expected-warning {{passing object of trivial but non-POD type 'TrivialButNonPOD' through variadic function is incompatible with C++98}}
166}
167
168struct HasExplicitConversion {
169 explicit operator bool(); // expected-warning {{explicit conversion functions are incompatible with C++98}}
170};
Richard Smith6b130222011-10-18 21:39:00 +0000171
172struct Struct {};
173enum Enum { enum_val = 0 };
174struct BadFriends {
175 friend enum ::Enum; // expected-warning {{befriending enumeration type 'enum ::Enum' is incompatible with C++98}}
176 friend int; // expected-warning {{non-class friend type 'int' is incompatible with C++98}}
177 friend Struct; // expected-warning {{befriending 'Struct' without 'struct' keyword is incompatible with C++98}}
178};
179
180int n = {}; // expected-warning {{scalar initialized from empty initializer list is incompatible with C++98}}
Richard Smith77faa362011-10-19 00:07:01 +0000181
182class PrivateMember {
183 struct ImPrivate {};
184};
185template<typename T> typename T::ImPrivate SFINAEAccessControl(T t) { // expected-warning {{substitution failure due to access control is incompatible with C++98}} expected-note {{while substituting deduced template arguments into function template 'SFINAEAccessControl' [with T = PrivateMember]}}
186 return typename T::ImPrivate();
187}
188int SFINAEAccessControl(...) { return 0; }
189int CheckSFINAEAccessControl = SFINAEAccessControl(PrivateMember());
Richard Smith53e53512011-10-19 00:54:10 +0000190
191template<typename T>
192struct FriendRedefinition {
193 friend void Friend() {} // expected-warning {{friend function 'Friend' would be implicitly redefined in C++98}} expected-note {{previous}}
194};
195FriendRedefinition<int> FriendRedef1;
196FriendRedefinition<char> FriendRedef2; // expected-note {{requested here}}
Richard Smith83da2e72011-10-19 16:55:56 +0000197
198namespace CopyCtorIssues {
199 struct Private {
200 Private();
201 private:
202 Private(const Private&); // expected-note {{declared private here}}
203 };
204 struct NoViable {
205 NoViable();
206 NoViable(NoViable&); // expected-note {{not viable}}
207 };
208 struct Ambiguous {
209 Ambiguous();
210 Ambiguous(const Ambiguous &, int = 0); // expected-note {{candidate}}
211 Ambiguous(const Ambiguous &, double = 0); // expected-note {{candidate}}
212 };
213 struct Deleted { // expected-note {{here}}
214 // Copy ctor implicitly defined as deleted because Private's copy ctor is
215 // inaccessible.
216 Private p;
217 };
218
219 const Private &a = Private(); // expected-warning {{copying variable of type 'CopyCtorIssues::Private' when binding a reference to a temporary would invoke an inaccessible constructor in C++98}}
220 const NoViable &b = NoViable(); // expected-warning {{copying variable of type 'CopyCtorIssues::NoViable' when binding a reference to a temporary would find no viable constructor in C++98}}
221 const Ambiguous &c = Ambiguous(); // expected-warning {{copying variable of type 'CopyCtorIssues::Ambiguous' when binding a reference to a temporary would find ambiguous constructors in C++98}}
222 const Deleted &d = Deleted(); // expected-warning {{copying variable of type 'CopyCtorIssues::Deleted' when binding a reference to a temporary would invoke a deleted constructor in C++98}}
223}
Richard Smithe7d7c392011-10-19 20:41:51 +0000224
225namespace UnionOrAnonStructMembers {
226 struct NonTrivCtor {
227 NonTrivCtor(); // expected-note 2{{user-declared constructor}}
228 };
229 struct NonTrivCopy {
230 NonTrivCopy(const NonTrivCopy&); // expected-note 2{{user-declared copy constructor}}
231 };
232 struct NonTrivDtor {
233 ~NonTrivDtor(); // expected-note 2{{user-declared destructor}}
234 };
235 union BadUnion {
236 NonTrivCtor ntc; // expected-warning {{union member 'ntc' with a non-trivial constructor is incompatible with C++98}}
237 NonTrivCopy ntcp; // expected-warning {{union member 'ntcp' with a non-trivial copy constructor is incompatible with C++98}}
238 NonTrivDtor ntd; // expected-warning {{union member 'ntd' with a non-trivial destructor is incompatible with C++98}}
239 };
240 struct Wrap {
241 struct {
242 NonTrivCtor ntc; // expected-warning {{anonymous struct member 'ntc' with a non-trivial constructor is incompatible with C++98}}
243 NonTrivCopy ntcp; // expected-warning {{anonymous struct member 'ntcp' with a non-trivial copy constructor is incompatible with C++98}}
244 NonTrivDtor ntd; // expected-warning {{anonymous struct member 'ntd' with a non-trivial destructor is incompatible with C++98}}
245 };
246 };
Richard Smithb9c64d82012-02-16 20:41:22 +0000247 union WithStaticDataMember {
248 static constexpr double d = 0.0; // expected-warning {{static data member 'd' in union is incompatible with C++98}} expected-warning {{'constexpr' specifier is incompatible with C++98}}
249 static const int n = 0; // expected-warning {{static data member 'n' in union is incompatible with C++98}}
250 static int k; // expected-warning {{static data member 'k' in union is incompatible with C++98}}
251 };
Richard Smithe7d7c392011-10-19 20:41:51 +0000252}
Richard Smith95aafb22011-10-20 03:28:47 +0000253
254int EnumNNS = Enum::enum_val; // expected-warning {{enumeration type in nested name specifier is incompatible with C++98}}
255template<typename T> void EnumNNSFn() {
256 int k = T::enum_val; // expected-warning {{enumeration type in nested name specifier is incompatible with C++98}}
257};
258template void EnumNNSFn<Enum>(); // expected-note {{in instantiation}}
Richard Smith0e9e9812011-10-20 21:42:12 +0000259
260void JumpDiagnostics(int n) {
261 goto DirectJump; // expected-warning {{goto would jump into protected scope in C++98}}
262 TrivialButNonPOD tnp1; // expected-note {{jump bypasses initialization of non-POD variable}}
263
264DirectJump:
265 void *Table[] = {&&DirectJump, &&Later};
266 goto *Table[n]; // expected-warning {{indirect goto might cross protected scopes in C++98}}
267
268 TrivialButNonPOD tnp2; // expected-note {{jump bypasses initialization of non-POD variable}}
269Later: // expected-note {{possible target of indirect goto}}
270 switch (n) {
271 TrivialButNonPOD tnp3; // expected-note {{jump bypasses initialization of non-POD variable}}
272 default: // expected-warning {{switch case would be in a protected scope in C++98}}
273 return;
274 }
275}
Richard Smithd390de92012-02-25 10:20:59 +0000276
277namespace UnevaluatedMemberAccess {
278 struct S {
279 int n;
280 int f() { return sizeof(S::n); } // ok
281 };
282 int k = sizeof(S::n); // expected-warning {{use of non-static data member 'n' in an unevaluated context is incompatible with C++98}}
283 const std::type_info &ti = typeid(S::n); // expected-warning {{use of non-static data member 'n' in an unevaluated context is incompatible with C++98}}
284}
Richard Smith26b75c02012-03-09 22:27:51 +0000285
286namespace LiteralUCNs {
287 char c1 = '\u001e'; // expected-warning {{universal character name referring to a control character is incompatible with C++98}}
288 wchar_t c2 = L'\u0041'; // expected-warning {{specifying character 'A' with a universal character name is incompatible with C++98}}
289 const char *s1 = "foo\u0031"; // expected-warning {{specifying character '1' with a universal character name is incompatible with C++98}}
290 const wchar_t *s2 = L"bar\u0085"; // expected-warning {{universal character name referring to a control character is incompatible with C++98}}
291}