URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [der_pointer_4.f90] - Rev 868
Go to most recent revision | Compare with Previous | Blame | View Log
! {dg-do compile }
! PR 24426
! Pointer-components of derived type with initialized components
module crash
implicit none
type foo
integer :: i = 0
type (foo), pointer :: next
end type foo
type (foo), save :: bar
end module crash
! { dg-final { cleanup-modules "crash" } }
Go to most recent revision | Compare with Previous | Blame | View Log