blob: 9d16bc91749cec56ca39753feddd55e0039f557b [file] [log] [blame] [edit]
!RUN: %python %S/test_errors.py %s %flang_fc1
module m
type dt
end type
contains
subroutine s(p)
!ERROR: 'dt' must be an abstract interface or a procedure with an explicit interface
procedure(dt), pointer :: p
end
end