Jared Ahern
unread,May 29, 2009, 2:59:16 PM5/29/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to gg95
Hey folks,
A couple things:
1) Do you need to use the version of g95 bundled with the coarray
code, or can you use an updated version?
2) Does anyone have any luck compiling this code? I get an internal
compiler error.
PROGRAM error1
IMPLICIT NONE
TYPE Vec
REAL, ALLOCATABLE :: c(:)
END TYPE Vec
TYPE LongVec
TYPE(Vec), ALLOCATABLE :: x[:]
END TYPE LongVec
TYPE(LongVec) :: a
ALLOCATE(a%x[*])
ALLOCATE(a%x%c(5)) ! error is here
END PROGRAM error1
I filed a bug with Andy, but haven't heard back yet.
Thanks,
Jared