summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1z/constexpr-lambda4.C
blob: b3fd3d0030edcb6ea61d8f3399377a1fb91aae1e (plain)
1
2
3
4
// { dg-options -std=c++1z }

auto ID = [] (int n) constexpr { return n; };
constexpr int I = ID(3);