xref: /llvm-project/flang/test/Semantics/procinterface05.f90 (revision c9f94baca5d603392ed1739747dd0f9b2bd3adb3)
1! RUN: %python %S/test_errors.py %s %flang_fc1
2interface a1
3  subroutine s1
4    interface a2
5      subroutine s2
6        !ERROR: Invalid specification expression: reference to local entity 'k'
7        real x(k)
8      end subroutine
9    end interface
10    !ERROR: Invalid specification expression: reference to local entity 'k'
11    real y(k)
12  end subroutine
13end interface
14end
15