URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [der_init_4.f90] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
! 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
Go to most recent revision | Compare with Previous | Blame | View Log