brintos

brintos / llvm-project-archived public Read only

0
0
Text · 196 B · 6da90e7 Raw
9 lines · plain
1! RUN: %python %S/test_errors.py %s %flang_fc12integer, parameter :: j = 53real a(5)4!ERROR: 'j' is not a variable5read *, (a(j), j=1, 5)6!ERROR: 'j' is not a variable7print *, (a(j), j=1, 5)8end9