[LLVM] Fix Maintainers.md formatting (NFC)
[llvm-project.git] / flang / test / Semantics / implicit16.f90
blob4a03e0c15747dff457b1ffa3f0cf5ebb11612d69
1 ! RUN: %python %S/test_errors.py %s %flang_fc1
2 interface
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
11 end interface
12 end