1234567891011121314151617 |
- /****************************************************************************
- * Parser error 025: fclose fails
- *
- * Expect an error on the line:
- * /* again */ fclose(file)
- *
- * Author: Jed Wing <[email protected]>
- * Date: 2008-04-04
- ****************************************************************************/
- TIME_STEP = 1e-6
- ITERATIONS = 1
- file = fopen("invalid-025.tmp", "w")
- fclose(file)
- /* again */ fclose(file)
|