blob: 89439bc7eecad51f98acb51d741f2c9258d8d3ca [file] [log] [blame]
! { dg-do compile }
! PR fortran/108421
! Contributed by G.Steinmetz
program p
character(real(3)) :: c ! { dg-error "must be of INTEGER type" }
call s(c)
end
subroutine s(x)
character(*) :: x
end