[LoopReroll] Add an extra defensive check to avoid SCEV assertion.
[llvm-project.git] / flang / test / Semantics / implicit08.f90
bloba4984132d565f4f15a76348d23fb5104104e9247
1 ! RUN: %S/test_errors.sh %s %t %flang_fc1
2 ! REQUIRES: shell
3 subroutine s1
4 block
5 !ERROR: IMPLICIT statement is not allowed in a BLOCK construct
6 implicit logical(a)
7 end block
8 end subroutine