blob: 644ef65e1abf6a2e8bedab862c29fcbf628ab8f0 [file] [log] [blame]
! PR13930
! We were trying to assign a default initializer to dummy variables.
program der_init_4
type t
integer :: i = 42
end type
call foo(t(5))
contains
subroutine foo(a)
type (t), intent(in) :: a
if (a%i .ne. 5) call abort
end subroutine
end program