| View previous topic :: View next topic |
| Author |
Message |
mc3
Joined: 07 Sep 2004 Posts: 4
|
Posted: Fri Sep 10, 2004 5:55 am Post subject: nested derived type |
|
|
Hi,
i have problems with nested derived types that
pgf90 errors with:
"PGF90-S-0155-SEQUENCE must be set for nested derived type typ_b"
Excample:
type typ_a
sequence
type (typ_b), pointer :: pt_b
end type typ_a
type typ_b
sequence
type (typ_a), pointer :: pt_a
end type typ_b
Any ideas how to solve this Problem? |
|
| Back to top |
|
 |
mkcolg
Joined: 30 Jun 2004 Posts: 4996 Location: The Portland Group Inc.
|
Posted: Mon Sep 13, 2004 1:04 pm Post subject: Most likely a bug. |
|
|
Unfortunately, it looks like a bug. I go ahead an submit a TPR to get it fixed. I'm not sure what the best work around would be, short of not using sequence in the example.
Thanks,
Mat |
|
| Back to top |
|
 |
|