home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 17 / CD_ASCQ_17_101194.iso / vrac / chkarg.zip / TEST.PRG < prev   
Text File  |  1994-05-23  |  485b  |  15 lines

  1. // test.prg
  2. #include "checkarg.ch"
  3. // Generates the following run-time error
  4. //    because function expects numeric.
  5. DoIt("Now")
  6. function DoIt(nHowMuch)
  7. return nil
  8.  
  9. //  ┌────────────────────────────────────────────┐
  10. //  │C is an invalid type for parameter nHowMuch │
  11. //  │    of module DoIt, called from TEST/5.     │
  12. //  │                                            │
  13. //  │  Quit    Skip    Skip Module    SkipAll    │
  14. //  └────────────────────────────────────────────┘
  15.