blob: 074591e7063cd225c11994c10e997d697b4a6c20 [file] [log] [blame]
Richard Smithb4b1d692013-01-25 04:22:16 +00001// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 -Wno-error=static-float-init %s
Richard Smith2da7a512011-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 Smithd7c56e12011-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 Smith2da7a512011-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 Blaikie6933e3b2013-01-29 21:40:37 +000020 float foo(); // expected-note {{here}}
Richard Smith2da7a512011-09-29 21:28:14 +000021
22 struct A {
David Blaikiea367e9d2013-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 Smith2da7a512011-09-29 21:28:14 +000025 static constexpr float x2 = 5.0f;
Richard Smith099e7f62011-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 Smith2da7a512011-09-29 21:28:14 +000027 };
28}
DeLesley Hutchinsd08d5992012-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}