blob: 3998cd32c818cf2c3675148a8ebfb2f70142388d [file] [log] [blame]
! RUN: %flang_fc1 -fsyntax-only %s 2>&1 | FileCheck --allow-empty %s
! CHECK-NOT: error:
! Test that zero-length character substrings with lbound>ubounds indices
! do not produce spurious errors when the character array is zero length.
program flang_t7052
implicit none
character*(*), parameter :: param_char = ""
character*(0) :: zero_len_char
if ( param_char(init(5):init(3)) > zero_len_char(1:-2) ) then
print *,"Test failed"
endif
if ( param_char(init(5):init(3)) > zero_len_char(10:2) ) then
print *,"Test failed"
endif
if ( param_char(init(5):init(3)) > zero_len_char(init(10):2) ) then
print *,"Test failed"
endif
if ( param_char(init(5):init(3)) > zero_len_char(init(10):-2) ) then
print *,"Test failed"
endif
if ( param_char(init(5):init(3)) > zero_len_char(2:init(10)) ) then
print *,"Test failed"
endif
contains
integer function init(i)
integer, intent(in) :: i
init=i
end
end program