aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.fortran-torture/execute/der_init_4.f90
blob: 644ef65e1abf6a2e8bedab862c29fcbf628ab8f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
! 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