blob: a66e8b59da2c62f41a4e86952b0f15cc67b72d43 [file] [log] [blame]
! RUN: %S/test_errors.sh %s %t %flang_fc1
! REQUIRES: shell
subroutine s
!ERROR: Declaration of 'x' conflicts with its use as internal procedure
real :: x
contains
subroutine x
end
end
module m
!ERROR: Declaration of 'x' conflicts with its use as module procedure
real :: x
contains
subroutine x
end
end