xref: /llvm-project/flang/test/Semantics/implicit13.f90 (revision c32d5458b50fded7151261aac3b326de94f4174c)
1! RUN: %python %S/test_errors.py %s %flang_fc1
2!ERROR: No explicit type declared for 'func'
3!ERROR: No explicit type declared for 'obj'
4subroutine implicit_none(func, sub, obj)
5  implicit none
6  call sub ! ok
7  print *, func()
8  print *, obj
9end
10