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