gnucobol-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[open-cobol-list] Internal compiler error


From: Charles Anthony
Subject: [open-cobol-list] Internal compiler error
Date: Thu, 27 Jun 2013 19:40:08 -0700

$ cobc -x hw.cob
Invalid tree tag 14
typeck.c:4317: Internal compiler error
Aborting compile of hw.cob at line 19


$ cat hw.cob
       IDENTIFICATION DIVISION.
       PROGRAM-ID.     HELLOWORLD.

      *
       ENVIRONMENT DIVISION.

       DATA DIVISION.
       working-storage section.

       01 buf pic x(256) usage is display.
       01 byteCast based.
           05 byteCasted usage binary-char unsigned.

       PROCEDURE DIVISION.

           DISPLAY "Hello world!"
           accept buf
           move address of buf to byteCast
           display byteCasted
           STOP RUN.
           EXIT.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]