blob: 2b1338f97fd776edc04d001c0d4b64d0e671d8a6 [file] [log] [blame]
Richard Trieu406e65c2013-09-20 03:03:06 +00001// RUN: %clang_cc1 -Wno-uninitialized -fsyntax-only -verify -std=c++11 -Wno-error=static-float-init %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 {
David Blaikie3645cf92013-01-29 21:40:37 +000020 float foo(); // expected-note {{here}}
Richard Smithee6311d2011-09-29 21:28:14 +000021
22 struct A {
David Blaikie8505c292013-01-29 22:26:08 +000023 static const float x = 5.0f; // expected-warning {{requires 'constexpr'}} expected-note {{add 'constexpr'}}
24 static const float y = foo(); // expected-warning {{requires 'constexpr'}} expected-note {{add 'constexpr'}}
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}