[flang-commits] [flang] [flang] Allow LOCK_TYPE & al. to associate with INTENT(IN OUT) (PR #121413)
Peter Klausler via flang-commits
flang-commits at lists.llvm.org
Fri Jan 3 08:20:24 PST 2025
================
@@ -113,3 +113,14 @@ pure subroutine test7(lp)
lp%next%next => null()
end
end module
+program main
+ use iso_fortran_env, only: lock_type
+ type(lock_type) lock
+ interface
+ subroutine inoutlock(lock)
+ import lock_type
+ type(lock_type), intent(in out) :: lock
----------------
klausler wrote:
Sure, will do.
https://github.com/llvm/llvm-project/pull/121413
More information about the flang-commits
mailing list