bolt/deps/llvm-18.1.8/flang/test/Semantics/implicit09.f90
2025-02-14 19:21:04 +01:00

11 lines
297 B
Fortran

! RUN: %python %S/test_errors.py %s %flang_fc1 -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