a b/test/expr-brackets.c
1
2
void func()
3
{
4
    a = b * (c + d) * e;
5
    a = b * (c++);
6
    a = b * c++;
7
}