BUG: In-line Comment in Continued FORMAT Causes Syntax ErrorLast reviewed: December 10, 1995Article ID: Q109876 |
The information in this article applies to:
SYMPTOMSAn attempt to compile a program containing a FORMAT specifier that is more than one line long and that has an in-line comment on a line other than the last, causes the following warning:
warning F4989: ' ' : unexpected character in formatIn-line comments start with an exclamation point. If the FORMAT statement is referenced during program execution, it will cause the program to terminate with exit code 1. The following run-time error might be generated:
run-time error F6989: WRITE ' %c ' : unexpected character in format RESOLUTIONThis problem can be corrected by removing the embedded comment.
STATUSMicrosoft has confirmed this to be a problem in the products listed at the beginning of this article. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
Sample Codec Compile options needed: have no effect c The following program reproduces the problem:
10 format('This shows that an embedded ', ! Here is the comment & 'comment causes a problem.') write(*,10) end |
Additional reference words: 1.00 4.00
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |