xref: /llvm-project/flang/test/Semantics/implicit09.f90 (revision 6c1ac141d3c98af9738bc77fcb55602cbff7751f)
1! RUN: %python %S/test_errors.py %s %flang_fc1 -fimplicit-none-type-never
2subroutine s1
3  implicit none
4  i = j + k  ! would be error without -fimplicit-none-type-never
5end
6
7subroutine s2(a, n)
8  implicit none
9  real :: a(n)  ! would be error without -fimplicit-none-type-never
10  integer :: n
11end
12