URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [coarray_25.f90] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do compile }
! { dg-options "-fcoarray=single" }
!
! Used to be rejected with:
! Error: Variable 'x' at (1) is a coarray or has a coarray
! component and is not ALLOCATABLE, SAVE nor a dummy argument
!
! Is valid as "a" is allocatable, cf. C526
! and http://j3-fortran.org/pipermail/j3/2011-June/004403.html
!
subroutine test2()
type t
integer, allocatable :: a(:)[:]
end type t
type(t) :: x
allocate(x%a(1)[*])
end subroutine test2
Go to most recent revision | Compare with Previous | Blame | View Log