[flang-commits] [PATCH] D146577: [flang] Fix check for PRIVATE override of PUBLIC t.b.p.
Peter Klausler via Phabricator via flang-commits
flang-commits at lists.llvm.org
Mon Mar 27 15:52:26 PDT 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rG2e0873c75ef8: [flang] Fix check for PRIVATE override of PUBLIC t.b.p. (authored by klausler).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D146577/new/
https://reviews.llvm.org/D146577
Files:
flang/lib/Semantics/check-declarations.cpp
flang/test/Semantics/bindings01.f90
Index: flang/test/Semantics/bindings01.f90
===================================================================
--- flang/test/Semantics/bindings01.f90
+++ flang/test/Semantics/bindings01.f90
@@ -275,6 +275,24 @@
end subroutine
end module
+module m11
+ type t1
+ contains
+ procedure, nopass :: tbp => t1p
+ end type
+ type, extends(t1) :: t2
+ contains
+ private
+ !ERROR: A PRIVATE procedure may not override a PUBLIC procedure
+ procedure, nopass :: tbp => t2p
+ end type
+ contains
+ subroutine t1p
+ end
+ subroutine t2p
+ end
+end
+
program test
use m1
type,extends(t) :: t2
Index: flang/lib/Semantics/check-declarations.cpp
===================================================================
--- flang/lib/Semantics/check-declarations.cpp
+++ flang/lib/Semantics/check-declarations.cpp
@@ -1983,7 +1983,7 @@
if (FindModuleContaining(dtScope) ==
FindModuleContaining(overridden->owner())) {
// types declared in same madule
- if (overridden->attrs().test(Attr::PUBLIC)) {
+ if (!overridden->attrs().test(Attr::PRIVATE)) {
SayWithDeclaration(*overridden,
"A PRIVATE procedure may not override a PUBLIC procedure"_err_en_US);
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D146577.508824.patch
Type: text/x-patch
Size: 1260 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/flang-commits/attachments/20230327/bd645be6/attachment-0001.bin>
More information about the flang-commits
mailing list