invalid-021.mdl 502 B

12345678910111213141516
  1. /****************************************************************************
  2. * Parser error 021: fopen fails (file doesn't exist)
  3. *
  4. * Expect an error on the line:
  5. * file = fopen("/scritch/scratch/this/file/doesn't/exist/please", "w")
  6. *
  7. * Author: Jed Wing <[email protected]>
  8. * Date: 2008-04-04
  9. ****************************************************************************/
  10. TIME_STEP = 1e-6
  11. ITERATIONS = 1
  12. file = fopen("/scritch/scratch/this/file/doesn't/exist/please", "w")
  13. fclose(file)