brintos

brintos / llvm-project-archived public Read only

0
0
Text · 186 B · d3e72e2 Raw
11 lines · plain
1!RUN: %python %S/test_errors.py %s %flang_fc12 3subroutine foo()4  integer :: xyz5!ERROR: 'xyz' is already declared in this scoping unit6  xyz: do i = 1, 1007  enddo xyz8end subroutine9 10 11