1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
// RUN: %clang_cc1 -fexperimental-new-constant-interpreter -verify -std=c++20 %s
// RUN: %clang_cc1 -verify=ref -std=c++20 %s
constexpr int a = 12;
constexpr int f = [c = a]() { return c; }();
static_assert(f == a);
constexpr int inc() {
int a = 10;
auto f = [&a]() {
++a;
};
f();f();
return a;
}
static_assert(inc() == 12);
constexpr int add(int a, int b) {
auto doIt = [a, b](int c) {
return a + b + c;
};
return doIt(2);
}
static_assert(add(4, 5) == 11);
constexpr int add2(int a, int b) {
auto doIt = [a, b](int c) {
auto bar = [a]() { return a; };
auto bar2 = [b]() { return b; };
return bar() + bar2() + c;
};
return doIt(2);
}
static_assert(add2(4, 5) == 11);
constexpr int div(int a, int b) {
auto f = [=]() {
return a / b; // expected-note {{division by zero}} \
// ref-note {{division by zero}}
};
return f(); // expected-note {{in call to '&f->operator()()'}} \
// ref-note {{in call to 'f.operator()()'}}
}
static_assert(div(8, 2) == 4);
static_assert(div(8, 0) == 4); // expected-error {{not an integral constant expression}} \
// expected-note {{in call to 'div(8, 0)'}} \
// ref-error {{not an integral constant expression}} \
// ref-note {{in call to 'div(8, 0)'}}
struct F {
float f;
};
constexpr float captureStruct() {
F someF = {1.0};
auto p = [someF]() {
return someF.f;
};
return p();
}
static_assert(captureStruct() == 1.0);
int constexpr FunCase() {
return [x = 10] {
decltype(x) y; // type int b/c not odr use
// refers to original init-capture
auto &z = x; // type const int & b/c odr use
// refers to lambdas copy of x
y = 10; // Ok
//z = 10; // Ill-formed
return y;
}();
}
constexpr int WC = FunCase();
namespace LambdaParams {
template<typename T>
constexpr void callThis(T t) {
return t();
}
constexpr int foo() {
int a = 0;
auto f = [&a]() { ++a; };
callThis(f);
return a;
}
/// FIXME: This should work in the new interpreter.
static_assert(foo() == 1); // expected-error {{not an integral constant expression}}
}
|