brintos

brintos / llvm-project-archived public Read only

0
0
Text · 287 B · 560b6be Raw
9 lines · plain
1!RUN: %python %S/test_errors.py %s %flang_fc12subroutine s(i)3  type(*) :: i4  !ERROR: TYPE(*) dummy argument may only be used as an actual argument5  !ERROR: Assumed-type entity 'i' must be a dummy argument6  !ERROR: Must have INTEGER type, but is TYPE(*)7  print *, [(i, i = 1,1)]8end9