author | Markus Bröker <mbroeker@largo.dyndns.tv> |
Wed, 02 May 2012 20:49:41 +0200 | |
changeset 164 | e1f4bba1097a |
parent 77 | 49e0babccb23 |
permissions | -rw-r--r-- |
77 | 1 |
/** |
2 |
* parser/c_compiler/test/error.c |
|
3 |
* Copyright (C) 2008 Markus Broeker |
|
4 |
*/ |
|
5 |
||
37 | 6 |
#include <stdio.h> |
7 |
#include <stdlib.h> |
|
8 |
||
39 | 9 |
int main (int argc, char **argv) |
37 | 10 |
{ |
39 | 11 |
FILE *fp; |
37 | 12 |
|
40 | 13 |
/* |
14 |
* ERROR SEMICOLON IS MISSING |
|
15 |
*/ |
|
39 | 16 |
printf ("Hello, world\n") |
37 | 17 |
|
40 | 18 |
return EXIT_SUCCESS; |
37 | 19 |
} |