Break circular dependency between FIR dialect and utilities
[llvm-project.git] / flang / test / Semantics / implicit08.f90
blob9b42bc2612c406ed603b47cab0d31c53f8a9b621
1 ! RUN: %python %S/test_errors.py %s %flang_fc1
2 subroutine s1
3 block
4 !ERROR: IMPLICIT statement is not allowed in a BLOCK construct
5 implicit logical(a)
6 end block
7 end subroutine