blob: 097110335113b075faa864e9cd3550e461857bcd [file] [log] [blame]
// PR c++/84752
// { dg-do compile { target c++11 } }
void foo()
{
constexpr int x[1] = {};
[&x]{ return (bool)x; };
}