xref: /llvm-project/flang/test/Semantics/implicit16.f90 (revision 1e19e1e1a471f648ff63f02114648211666669ca)
1! RUN: %python %S/test_errors.py %s %flang_fc1
2interface
3!ERROR: No explicit type declared for 'a'
4  subroutine s(a)
5    implicit none
6  end
7!ERROR: No explicit type declared for 'f'
8  function f()
9    implicit none
10  end
11end interface
12end
13