brintos

brintos / llvm-project-archived public Read only

0
0
Text · 306 B · 928829c Raw
13 lines · plain
1! RUN: %python %S/test_errors.py %s %flang_fc12subroutine s13  implicit integer(a-z)4  !ERROR: IMPLICIT NONE statement after IMPLICIT statement5  implicit none6end subroutine7 8subroutine s29  implicit integer(a-z)10  !ERROR: IMPLICIT NONE(TYPE) after IMPLICIT statement11  implicit none(type)12end subroutine13