In this section:
This error is generated when an undefined identifier is located in the code. A PARSE_ERROR is fatal! and cannot be suppressed and the source code cannot be instrumented. There is also a strong possibility that the native compiler cannot parse the code, either.
|
The following code fragment shows an example program that generates PARSE_ERROR:
viod foo(){}
$ insure gcc -c foo.c
foo.c:1] **PARSE_ERROR**
Parse error.
>> viod foo() { }
identifier viod is undefined |
Correct the error based on the information presented in the diagnostic output.