blob: d5725f67b35d72f91473b28a71c5b3792422907f [file] [log] [blame]
! RUN: %python %S/test_errors.py %s %flang_fc1
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