blob: 677f3056bf8be8d7dce1fab810791b27a4aaf59f [file] [log] [blame]
// PR c++/82728
// { dg-do compile { target c++11 } }
void
foo ()
{
const int i = 1;
[=]()
{
switch (0)
{
case i:
break;
}
static_assert (i, "i");
};
}