标签: c++
我可以将lambda函数分配给constexpr变量:
constexpr
static constexpr auto f = []() {return 0;};
当我想评估constexpr中的函数时,编译器抱怨只能使用constexpr函数:
static auto constexpr i = f();
如何定义constexpr lambda?