brintos

brintos / llvm-project-archived public Read only

0
0
Text · 503 B · 7fc9d8f Raw
19 lines · plain
1! RUN: %python %S/test_errors.py %s %flang_fc1 -pedantic2  !WARNING: String edit descriptor in READ format expression3  read(*,'("abc")')4 5  !ERROR: Unterminated string6  !ERROR: Unterminated format expression7  read(*,'("abc)')8 9  !ERROR: 'H' edit descriptor in READ format expression10  read(*,'(3Habc)')11 12  !ERROR: 'H' edit descriptor in READ format expression13  !ERROR: Unterminated format expression14  read(*,'(5Habc)')15 16  !ERROR: 'I' edit descriptor 'w' value must be positive17  read(*,'(I0)')18end19