blob: 5a888a600568098ec4cf29631517a1a8cfa8a095 [file] [log] [blame]
! { dg-do run }
! PR fortran/33626
! Types were not always propagated correctly
logical(kind=1) :: i, j
integer(kind=1) :: a, b
character*1 :: c, d
if (any( (/ kind(i .and. j), kind(.not. (i .and. j)), kind((a + b)), &
kind((42_1)), kind((j .and. i)), kind((.true._1)), &
kind(c // d), kind((c) // d), kind((c//d)) /) /= 1 )) call abort()
if (any( (/ len(c // d), len((c) // d), len ((c // d)) /) /= 2)) call abort()
end