OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [gfortran.dg/] [intent_out_5.f90] - Blame information for rev 384

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 302 jeremybenn
! { dg-do run}
2
!
3
! PR fortran/41479
4
!
5
! Contributed by Juergen Reuter.
6
!
7
program main
8
 type :: container_t
9
    integer :: n = 42
10
    ! if the following line is omitted, the problem disappears
11
    integer, dimension(:), allocatable :: a
12
 end type container_t
13
 
14
 type(container_t) :: container
15
 
16
 if (container%n /= 42) call abort()
17
 if (allocated(container%a)) call abort()
18
 container%n = 1
19
 allocate(container%a(50))
20
 call init (container)
21
 if (container%n /= 42) call abort()
22
 if (allocated(container%a)) call abort()
23
contains
24
 subroutine init (container)
25
   type(container_t), intent(out) :: container
26
 end subroutine init
27
end program main

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.