public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/44044]  New: [OOP] SELECT TYPE with class-valued function
@ 2010-05-08 20:08 janus at gcc dot gnu dot org
  2010-05-08 20:14 ` [Bug fortran/44044] " janus at gcc dot gnu dot org
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: janus at gcc dot gnu dot org @ 2010-05-08 20:08 UTC (permalink / raw)
  To: gcc-bugs

The following (valid) test case is currently rejected:


implicit none

type :: t1
  integer :: i
end type

type, extends(t1) :: t2
end type

type(t1),target :: x1
type(t2),target :: x2

select type ( y => fun(1) )
type is (t1)
  print *,"t1"
type is (t2)
  print *,"t2"
class default
  print *,"default"
end select

select type ( y => fun(-1) )
type is (t1)
  print *,"t1"
type is (t2)
  print *,"t2"
class default
  print *,"default"
end select

contains

  function fun(i)
    class(t1),pointer :: fun
    integer :: i
    if (i>0) then
      fun => x1
    else if (i<0) then
      fun => x2
    else
      fun => NULL()
    end if
  end function

end


... with the bogus message:

select type ( y => fun(1) )
                           1
Error: Selector shall be polymorphic in SELECT TYPE statement at (1)


-- 
           Summary: [OOP] SELECT TYPE with class-valued function
           Product: gcc
           Version: 4.6.0
            Status: UNCONFIRMED
          Keywords: rejects-valid
          Severity: normal
          Priority: P3
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: janus at gcc dot gnu dot org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44044


^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2010-09-23  8:39 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-05-08 20:08 [Bug fortran/44044] New: [OOP] SELECT TYPE with class-valued function janus at gcc dot gnu dot org
2010-05-08 20:14 ` [Bug fortran/44044] " janus at gcc dot gnu dot org
2010-05-08 20:20 ` janus at gcc dot gnu dot org
2010-05-08 20:23 ` janus at gcc dot gnu dot org
2010-05-09 11:55 ` janus at gcc dot gnu dot org
2010-05-10 10:06 ` burnus at gcc dot gnu dot org
2010-05-10 12:54 ` janus at gcc dot gnu dot org
2010-05-17  8:26 ` janus at gcc dot gnu dot org
2010-05-17  8:32 ` janus at gcc dot gnu dot org
2010-08-27  7:31 ` burnus at gcc dot gnu dot org
2010-09-23  8:38 ` domob at gcc dot gnu dot org
2010-09-23  8:39 ` domob at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).