[LLVM] Fix Maintainers.md formatting (NFC)
[llvm-project.git] / flang / test / Semantics / implicit13.f90
blob0258de74f3e0ba62eb67e751046da74fde875c51
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'
4 subroutine implicit_none(func, sub, obj)
5 implicit none
6 call sub ! ok
7 print *, func()
8 print *, obj
9 end