Break circular dependency between FIR dialect and utilities
[llvm-project.git] / flang / test / Semantics / resolve16.f90
blobd5725f67b35d72f91473b28a71c5b3792422907f
1 ! RUN: %python %S/test_errors.py %s %flang_fc1
2 module m
3 interface
4 subroutine sub0
5 end
6 !ERROR: A PROCEDURE statement is only allowed in a generic interface block
7 procedure :: sub1, sub2
8 end interface
9 contains
10 subroutine sub1
11 end
12 subroutine sub2
13 end
14 end