erreur_appel_recursif.logo 206 B

123456789101112
  1. # La compilation de ce fichier doit
  2. # provoquer une erreur semantique
  3. # 'routine indefinie' sur l'instruction CALL
  4. PROGRAM
  5. ROUTINE routineRecursive
  6. BEGIN
  7. CALL routineRecursive;
  8. END
  9. BEGIN
  10. END.