In the following example the variable names (bar and bars) are highlighted:
Foo(
int bar,
int bars );
But when I introduce an additional line-break (which is perfectly allowed by the syntax), the second variable is no longer highlighted:
Foo(
int bar,
int bars
);


