(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
achar_1.f90
! { 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