blob: 6e8ab5b3862c6a135b67651d2973c83a6ec38bd2 [file] [log] [blame]
! RUN: %S/test_errors.sh %s %t %f18
module m
interface
subroutine sub0
end
!ERROR: A PROCEDURE statement is only allowed in a generic interface block
procedure :: sub1, sub2
end interface
contains
subroutine sub1
end
subroutine sub2
end
end