travellhyne / f2py

Automatically exported from code.google.com/p/f2py
Other
0 stars 0 forks source link

Parser chokes on arrays of derived types #26

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Hi Pearu,

I couldn't figure out how to fix this one yet.. but here a test case that makes 
the parser unhappy:

=========
MODULE testa

TYPE t
    INTEGER :: x
END TYPE

CONTAINS

SUBROUTINE f(arga)
INTEGER :: arga
TYPE(t), DIMENSION(2) :: v

v(1)%x = 23
v(2)%x = 42

END SUBROUTINE f
END MODULE testa
=========

cheers,

omar

Original issue reported on code.google.com by omar.aw...@gmail.com on 3 Sep 2010 at 3:38

GoogleCodeExporter commented 9 years ago
This issue was closed by revision ec5eb01a4e.

Original comment by pearu.peterson on 3 Sep 2010 at 5:21