blob: bda24f6f81b0a09f22b5e839da63b86f1f20924e [file] [log] [blame]
! RUN: %S/test_errors.sh %s %t %flang_fc1 -fimplicit-none-type-never
! REQUIRES: shell
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