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