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