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