From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id E0ABA3858C78; Mon, 7 Mar 2022 04:47:49 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E0ABA3858C78 From: "fruitclover at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/104812] New: Construct-name with same variable name in scope Date: Mon, 07 Mar 2022 04:47:49 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 11.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: fruitclover at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Mar 2022 04:47:50 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D104812 Bug ID: 104812 Summary: Construct-name with same variable name in scope Product: gcc Version: 11.2.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: fruitclover at gmail dot com Target Milestone: --- Is this expected behavior for s1 to disallow construct-name with the same n= ame as declared variable?=20 $ cat -n test.f90 1 subroutine s1 2 logical :: x 3 x: if (x) then 4 end if x 5 end 6=20=20 7 subroutine s2 8 logical :: x 9 x: block 10 end block x 11 end $ gfortran test.f90 -fsyntax-only -Wall -Wextra test.f90:3:11: 3 | x: if (x) then | 1 Error: Symbol at (1) is not appropriate for an expression test.f90:4:5: 4 | end if x | 1 Error: Expecting END SUBROUTINE statement at (1)=