blob: 41b0a5ce9589105a8b9d2b4d12c4ff181f67e931 [file] [log] [blame]
Richard Smith9ca5c422011-10-13 22:29:44 +00001// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
Richard Smithee6311d2011-09-29 21:28:14 +00002
3int vs = 0;
4
5class C {
6public:
7 struct NestedC {
8 NestedC(int);
9 };
10
11 int i = 0;
12 static int si = 0; // expected-error {{non-const static data member must be initialized out of line}}
13 static const NestedC ci = 0; // expected-error {{static data member of type 'const C::NestedC' must be initialized out of line}}
Richard Smithe4345902011-12-29 21:57:33 +000014 static const int nci = vs; // expected-error {{in-class initializer for static data member is not a constant expression}}
Richard Smithee6311d2011-09-29 21:28:14 +000015 static const int vi = 0;
16 static const volatile int cvi = 0; // expected-error {{static const volatile data member must be initialized out of line}}
17};
18
19namespace rdar8367341 {
Richard Smithd0b4dd62011-12-19 06:19:21 +000020 float foo(); // expected-note {{here}}
Richard Smithee6311d2011-09-29 21:28:14 +000021
22 struct A {
Richard Smith7b729cd2011-09-30 00:33:19 +000023 static const float x = 5.0f; // expected-warning {{GNU extension}} expected-note {{use 'constexpr' specifier to silence this warning}}
Richard Smithe4345902011-12-29 21:57:33 +000024 static const float y = foo(); // expected-warning {{GNU extension}} expected-note {{use 'constexpr' specifier to silence this warning}} expected-error {{in-class initializer for static data member is not a constant expression}}
Richard Smithee6311d2011-09-29 21:28:14 +000025 static constexpr float x2 = 5.0f;
Richard Smithd0b4dd62011-12-19 06:19:21 +000026 static constexpr float y2 = foo(); // expected-error {{must be initialized by a constant expression}} expected-note {{non-constexpr function 'foo'}}
Richard Smithee6311d2011-09-29 21:28:14 +000027 };
28}
DeLesley Hutchins5b330db2012-02-25 00:11:55 +000029
30
31namespace Foo {
32 // Regression test -- forward declaration of Foo should not cause error about
33 // nonstatic data member.
34 class Foo;
35 class Foo {
36 int x;
37 int y = x;
38 };
39}