[Bug fortran/47191] Misleading error message if part-ref starts with DATA

2019-08-12 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47191

kargl at gcc dot gnu.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #4 from kargl at gcc dot gnu.org ---
Seems I forgot to close this.

[Bug fortran/47191] Misleading error message if part-ref starts with DATA

2019-08-06 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47191

kargl at gcc dot gnu.org changed:

   What|Removed |Added

   Priority|P5  |P4
 CC||kargl at gcc dot gnu.org
   Assignee|unassigned at gcc dot gnu.org  |kargl at gcc dot gnu.org
   Target Milestone|--- |10.0
   Severity|enhancement |normal

--- Comment #3 from kargl at gcc dot gnu.org ---
Fixed on trunk by r274033 and r274122.

[Bug fortran/47191] Misleading error message if part-ref starts with DATA

2015-11-18 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47191

Dominique d'Humieres  changed:

   What|Removed |Added

   Priority|P3  |P5
   Severity|normal  |enhancement

--- Comment #2 from Dominique d'Humieres  ---
Compiling the following code

module library
  implicit none
  type parameters
private
integer :: steps
   !real:: result
  end type parameters
contains
  subroutine set_parameters (datos, steps)
type (parameters):: datos
integer, intent (in) :: steps
datos % steps  = steps
datos % result = 0.0
  end subroutine set_parameters
end module library

gives the error

 datos % result = 0.0
  1

Error: 'result' at (1) is not a member of the 'parameters' structure

[Bug fortran/47191] Misleading error message if part-ref starts with DATA

2013-09-04 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47191

Dominique d'Humieres dominiq at lps dot ens.fr changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Last reconfirmed||2013-09-04
 Ever confirmed|0   |1

--- Comment #1 from Dominique d'Humieres dominiq at lps dot ens.fr ---
Still present at revision 202232.