2024-06-02 Paul Thomas <pault@gcc.gnu.org>
gcc/testsuite/
PR fortran/109345
* gfortran.dg/pr109345.f90: Comment out test of component refs.
! Test character(kind=4)
call foo (str_t(2)%str_array)
! Test component references
- call foo (str_t%str_array(1), .true.)
+! call foo (str_t%str_array(1), .true.) ! Does not work in 12-/13-branches
! Test component references and that array offset is correct.
- call foo (str_t(2:3)%i)
+! call foo (str_t(2:3)%i) ! Does not work in 12-/13-branches
contains
subroutine foo (var, flag)