aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/tests/handwritten/missing-closing-brace-at-end-of-function.c
blob: dfb3691d8f1f485c55c57075475bc382fbce3266 (plain)
1
2
3
4
5
6
7
8
9
10
int main (void)
{
  int x = 0;
  x++;
  /* missing closing brace, here */
  /* unfortunately, the error is detected only after the declaration of f */
  
void f (void)
{
}