blob: 345016b236c8a551b0bcde6bcbd97591a1d3df1f [file] [log] [blame] [edit]
!RUN: %flang_fc1 -fdebug-unparse %s 2>&1 | FileCheck %s
!CHECK: TYPE(t) :: x = t(pp=f)
!CHECK-NOT: error:
interface
function f()
end
end interface
type t
procedure(f), nopass, pointer :: pp
end type
type(t) :: x = t(pp=f)
end