2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / constexpr-lambda4.C
blob83a2029fdb3a338469765b1d00349557e9923887
1 // { dg-do compile { target c++17 } }
3 auto ID = [] (int n) constexpr { return n; };
4 constexpr int I = ID(3);