URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [allocate_derived_5.f90] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do run }!! PR 45828: [4.6 Regression] No default initialization of derived type members?!! Contributed by Juha <jpr@csc.fi>program fail1type ainteger :: iend type atype btype(a) :: acomp = a(5)end type btype(b), allocatable :: c(:)allocate(c(1))if (c(1) % acomp % i /= 5) call abort()end program fail1
