blob: 30577fccb0f637eeb90adf8b0781ba0d4306e0d8 [file] [log] [blame]
! RUN: %S/test_errors.sh %s %t %f18 -fimplicit-none-type-never
subroutine s1
implicit none
i = j + k ! would be error without -fimplicit-none-type-never
end
subroutine s2(a, n)
implicit none
real :: a(n) ! would be error without -fimplicit-none-type-never
integer :: n
end