aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/Wmisleading-indentation-6.c
blob: 5b7dd7fd2fd59ed9c8689fcf1fa9e230b3bd196c (plain)
1
2
3
4
5
6
7
8
9
10
11
/* PR c++/71637  */
/* { dg-options "-ftrack-macro-expansion=0 -Wmisleading-indentation" }  */

#define m(x) ({ int y; if (x) y=0; else y=1; y; })

int main()
{
  int x =
    m(0);
  return x;
}