public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/34004]  New: Accepts invalid: Ambigiuous interface with subroutine.
@ 2007-11-06 14:16 burnus at gcc dot gnu dot org
  2007-11-07 11:02 ` [Bug fortran/34004] " pault at gcc dot gnu dot org
                   ` (4 more replies)
  0 siblings, 5 replies; 12+ messages in thread
From: burnus at gcc dot gnu dot org @ 2007-11-06 14:16 UTC (permalink / raw)
  To: gcc-bugs

After PR 33997 turned out to be no bug, there is the following program, which
gfortran wrongly accepts.

A bit oddly the Fortran standard does not distinguish between variables and
functions and subroutines are wild matches. The following is the relevant part
from the Fortran 2003 standard ("16.2.3 Restrictions on generic declarations"):

"Two dummy arguments are distinguishable if neither is a subroutine and neither
is TKR compatible (5.1.1.2) with the other."

module ambiguous
   implicit none
   interface both
      module procedure test1, test2
   end interface both
   contains
      function test1(x)
         implicit integer(x)
         integer test1

         test1 = 1
      end function test1

      function test2(x)
         interface
            subroutine x()
            end subroutine x
         end interface
         integer test2

         test2 = 2
      end function test2

      subroutine test3
      end subroutine test3
end module ambiguous

program main
   use ambiguous
   implicit none

   write(*,*) both(1)
   write(*,*) both(test3)
end program main


-- 
           Summary: Accepts invalid: Ambigiuous interface with subroutine.
           Product: gcc
           Version: 4.3.0
            Status: UNCONFIRMED
          Keywords: accepts-invalid
          Severity: normal
          Priority: P3
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: burnus at gcc dot gnu dot org


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


^ permalink raw reply	[flat|nested] 12+ messages in thread
[parent not found: <bug-34004-4@http.gcc.gnu.org/bugzilla/>]

end of thread, other threads:[~2013-04-30 21:48 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-11-06 14:16 [Bug fortran/34004] New: Accepts invalid: Ambigiuous interface with subroutine burnus at gcc dot gnu dot org
2007-11-07 11:02 ` [Bug fortran/34004] " pault at gcc dot gnu dot org
2007-11-08 10:33 ` burnus at gcc dot gnu dot org
2007-12-14 12:33 ` burnus at gcc dot gnu dot org
2008-04-17  7:31 ` fxcoudert at gcc dot gnu dot org
2008-04-20  7:31 ` burnus at gcc dot gnu dot org
     [not found] <bug-34004-4@http.gcc.gnu.org/bugzilla/>
2012-08-12 11:22 ` mikael at gcc dot gnu.org
2012-08-12 12:52 ` burnus at gcc dot gnu.org
2013-04-28 16:00 ` janus at gcc dot gnu.org
2013-04-28 17:14 ` dominiq at lps dot ens.fr
2013-04-30 21:48 ` tkoenig at gcc dot gnu.org
2013-04-30 21:48 ` tkoenig at gcc dot gnu.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).