blob: 2dbe42b34f312a734ca2505cc6f61aa29a42649c [file] [log] [blame]
// PR c++/20905
struct name {};
int
f ();
void
g ()
{
if (int name = f ())
{
}
}