brintos

brintos / llvm-project-archived public Read only

0
0
Text · 308 B · 3323866 Raw
17 lines · plain
1! RUN: %python %S/test_errors.py %s %flang_fc12subroutine s3  !ERROR: Declaration of 'x' conflicts with its use as internal procedure4  real :: x5contains6  subroutine x7  end8end9 10module m11  !ERROR: Declaration of 'x' conflicts with its use as module procedure12  real :: x13contains14  subroutine x15  end16end17