Richard Smith | 561fb15 | 2012-02-25 07:33:38 +0000 | [diff] [blame^] | 1 | // RUN: %clang_cc1 -pedantic-errors -std=c++11 -emit-pch %s -o %t |
| 2 | // RUN: %clang_cc1 -pedantic-errors -std=c++11 -include-pch %t -verify %s |
| 3 | |
| 4 | #ifndef HEADER_INCLUDED |
| 5 | |
| 6 | #define HEADER_INCLUDED |
| 7 | |
| 8 | struct B { |
| 9 | B(); // expected-note {{here}} |
| 10 | constexpr B(char) {} |
| 11 | }; |
| 12 | |
| 13 | struct C { // expected-note {{not an aggregate and has no constexpr constructors}} |
| 14 | B b; |
| 15 | double d = 0.0; |
| 16 | }; |
| 17 | |
| 18 | struct D : B { |
| 19 | constexpr D(int n) : B('x'), k(2*n+1) {} |
| 20 | int k; |
| 21 | }; |
| 22 | |
| 23 | #else |
| 24 | |
| 25 | static_assert(D(4).k == 9, ""); |
| 26 | constexpr int f(C c) { return 0; } // expected-error {{not a literal type}} |
| 27 | constexpr B b; // expected-error {{constant expression}} expected-note {{non-constexpr}} |
| 28 | |
| 29 | #endif |