summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/input/c/bug_671.c
blob: 01a3b02bd4d5a1a397f5e941c8651989df3eb1f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#define FOO_MAX 10

bool foo[FOO_MAX];

void
foo_bar( int a,
           int* b,
    bool foo[FOO_MAX] );

void A()
{
      int a;
  int *b;
                 foo_bar( a, b, foo);
}