From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11313 invoked by alias); 25 Jan 2012 10:28:32 -0000 Received: (qmail 11304 invoked by uid 22791); 25 Jan 2012 10:28:31 -0000 X-SWARE-Spam-Status: No, hits=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 25 Jan 2012 10:28:19 +0000 From: "jilfa12 at yahoo dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/51995] New: Polymorphic class fails at runtime Date: Wed, 25 Jan 2012 10:36:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jilfa12 at yahoo dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2012-01/txt/msg02879.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51995 Bug #: 51995 Summary: Polymorphic class fails at runtime Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: fortran AssignedTo: unassigned@gcc.gnu.org ReportedBy: jilfa12@yahoo.com Created attachment 26458 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=26458 A factory pattern design to illustrate class pointers (polymorphic) behavior The attached factory pattern compiled successfully. 1 PROGRAM main 2 3 USE factory_pattern 4 5 IMPLICIT NONE 6 7 TYPE(CFactory) :: factory 8 CLASS(Connection), POINTER :: db_connect => NULL() 9 10 CALL factory%init("Oracle") 11 db_connect => factory%create_connection() !! Create Oracle DB 12 CALL db_connect%description() 13 14 !! The same factory can be used to create different connections 15 CALL factory%init("MySQL") !! Create MySQL DB 16 17 !! 'connect' is a 'class' pointer. So can be used for either Oracle or MySQL 18 db_connect => factory%create_connection() 19 CALL db_connect%description() 20 21 CALL factory%finalize() ! Destroy the object 22 23 END PROGRAM main The test driver program above produced this error when compiled with gfortran-4.7.0: test_factory.f90:12.29: CALL db_connect%description() 1 Error: 'description' at (1) is not a member of the 'connection' structure test_factory.f90:19.29: CALL db_connect%description() 1 Error: 'description' at (1) is not a member of the 'connection' structure The program (according to http://fortranwiki.org/fortran/show/Factory+Pattern) apparently run successfully with gfortran-4.6.0. Is this a bug?