xref: /llvm-project/flang/test/Semantics/resolve02.f90 (revision 6c1ac141d3c98af9738bc77fcb55602cbff7751f)
1! RUN: %python %S/test_errors.py %s %flang_fc1
2subroutine s
3  !ERROR: Declaration of 'x' conflicts with its use as internal procedure
4  real :: x
5contains
6  subroutine x
7  end
8end
9
10module m
11  !ERROR: Declaration of 'x' conflicts with its use as module procedure
12  real :: x
13contains
14  subroutine x
15  end
16end
17