root/test/lisp/progmodes/flymake-resources/errors-and-warnings.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. main

     1 /* Flymake should notice an error on the next line, since
     2    that file has at least one warning.*/
     3 #include "some-problems.h"
     4 /* But not this one */
     5 #include "no-problems.h"
     6 
     7 int main()
     8 {
     9   char c = 1000; /* a note and a warning */
    10   int bla;
    11   char c; if (bla == (void*)3); /* an error, and two warnings */
    12   return c;
    13 }

/* [<][>][^][v][top][bottom][index][help] */