parser/c_compiler/test/error.c
author Markus Bröker<broeker.markus@googlemail.com>
Sun, 10 Feb 2019 13:17:01 +0100
changeset 173 374a86886bc5
parent 77 49e0babccb23
permissions -rw-r--r--
LAST-DIGIT-BUG: INCREMENT before LF

/**
 * parser/c_compiler/test/error.c
 * Copyright (C) 2008 Markus Broeker
 */

#include <stdio.h>
#include <stdlib.h>

int main (int argc, char **argv)
{
    FILE *fp;

    /*
     * ERROR SEMICOLON IS MISSING
     */
    printf ("Hello, world\n")

        return EXIT_SUCCESS;
}