implicit09.f90 286 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 ! 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