From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24420 invoked by alias); 3 Aug 2011 18:37:47 -0000 Received: (qmail 24412 invoked by uid 22791); 3 Aug 2011 18:37:47 -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, 03 Aug 2011 18:37:32 +0000 From: "janus at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/49638] [OOP] length parameter is ignored when overriding type bound character functions with constant length. X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Keywords: accepts-invalid X-Bugzilla-Severity: normal X-Bugzilla-Who: janus at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Date: Wed, 03 Aug 2011 18:37:00 -0000 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: 2011-08/txt/msg00430.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49638 --- Comment #4 from janus at gcc dot gnu.org 2011-08-03 18:36:55 UTC --- (In reply to comment #3) > A check for different ranks can be added like this: This will reject the following variant of the original test case, which is accepted up to now: module world implicit none type :: world_1 contains procedure, nopass :: string => w1_string end type type, extends(world_1)::world_2 contains procedure, nopass :: string => w2_string end type contains function w1_string() integer :: w1_string w1_string = 1 end function function w2_string() integer,dimension(2) ::w2_string w2_string = 2 end function end module program hello use world implicit none type(world_1)::w1 type(world_2)::w2 print *,"hello world: hello",w1%string() print *,"hello world2: hello",w2%string() end program