Bug 84120 - Syntax for used for PDT constructors is incorrect
Summary: Syntax for used for PDT constructors is incorrect
Status: RESOLVED DUPLICATE of bug 82205
Alias: None
Product: gcc
Classification: Unclassified
Component: fortran (show other bugs)
Version: 8.0
: P3 normal
Target Milestone: ---
Assignee: Not yet assigned to anyone
URL:
Keywords:
Depends on:
Blocks: PDT 84094
  Show dependency treegraph
 
Reported: 2018-01-30 07:48 UTC by Neil Carlson
Modified: 2019-03-17 18:53 UTC (History)
2 users (show)

See Also:
Host:
Target:
Build:
Known to work:
Known to fail:
Last reconfirmed: 2018-01-31 00:00:00


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Neil Carlson 2018-01-30 07:48:56 UTC
Consider the PDT

type foo(dim)
  integer,len :: dim
  integer :: array(dim)
end type

While investigating how other compilers do on the gfortran testsuite programs, I discovered that gfortran would use the following syntax for a constructor for the PDT:

type(foo(2)) :: x
x = foo(2,[1,2])

This is absolutely wrong.  The correct constructor syntax is

x = foo(2)([1,2])

The PDT implementation appears to have the misconception that type parameters are (in part) regular components, but that is not so, they are two separate things. See PR84119 for some related references to the standard.  In particular here, see R455 for the constructor syntax (F08 standard), and R453 for the derived-type-spec (e.g. "foo(2)"). Note that 1.3.33 defines what a "component" is, and it does not include type parameters.

To summarize, gfortran works with this invalid example (Intel and NAG properly reject it)

type foo(dim)
  integer,len :: dim
  integer :: array(dim)
end type
type(foo(:)), allocatable :: x
x = foo(2,[1,2])
if (size(x%array) /= 2) stop 1
if (any(x%array /= [1,2])) stop 2
end

But gfortran rejects this corrected valid example (works with Intel and NAG):

type foo(dim)
  integer,len :: dim
  integer :: array(dim)
end type
type(foo(:)), allocatable :: x
x = foo(2)([1,2])
if (size(x%array) /= 2) stop 1
if (any(x%array /= [1,2])) stop 2
end

 x = foo(2)([1,2])
         1
Error: Invalid character in name at (1)
Comment 1 Neil Carlson 2018-01-30 19:46:40 UTC
This explains the problem underlying PR82205
Comment 2 Dominique d'Humieres 2018-01-31 12:59:26 UTC
> This explains the problem underlying PR82205

Duplicate of PR82205?
Comment 3 Dominique d'Humieres 2019-03-17 18:53:46 UTC
> Duplicate of PR82205?

Yes.

*** This bug has been marked as a duplicate of bug 82205 ***