1// PR c++/20905
2
3struct name {};
4
5int
6f ();
7
8void
9g ()
10{
11  if (int name = f ())
12    {
13    }
14}
15