[LoopReroll] Add an extra defensive check to avoid SCEV assertion.
[llvm-project.git] / flang / test / Semantics / resolve16.f90
blob775af3876def775c56f44b5e5c3418458a01c904
1 ! RUN: %S/test_errors.sh %s %t %flang_fc1
2 ! REQUIRES: shell
3 module m
4 interface
5 subroutine sub0
6 end
7 !ERROR: A PROCEDURE statement is only allowed in a generic interface block
8 procedure :: sub1, sub2
9 end interface
10 contains
11 subroutine sub1
12 end
13 subroutine sub2
14 end
15 end