blob: d5590c5e22de54080783165ad155f5e5e54309a5 [file] [log] [blame]
Richard Smith762bb9d2011-10-13 22:29:44 +00001// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %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 {
Richard Smith099e7f62011-12-19 06:19:21 +000020 float foo(); // expected-note {{here}}
Richard Smith2da7a512011-09-29 21:28:14 +000021
22 struct A {
Richard Smith2d23ec22011-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 Smithd7c56e12011-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 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}