aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1z/constexpr-lambda1.C
blob: a768cfb22cafd59f0d345a431be128c7182bf690 (plain)
1
2
3
4
5
6
// { dg-options -std=c++1z }

constexpr auto Add5 = [](int i) { return i+5; };

constexpr int x = Add5(4);
static_assert(x==9);