blob: 6b3073b17a7eddb0e13504891669c737e3822bb1 [file] [log] [blame]
! { dg-do run }
! achar() should work with all supported integer kinds.
program bug6
integer(1) :: i = 65
character a
a = achar(i)
if (a /= 'A') STOP 1
end program bug6