aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.fortran-torture/execute/intrinsic_achar.f90
blob: fba0a08974f4ec515cd491fbeab0d94597fbc58b (plain)
1
2
3
4
5
6
7
8
9
! Program to test the ACHAR and IACHAR intrinsics
program intrinsic_achar
  integer i

  i = 32
  if (achar(i) .ne. " ") call abort
  i = iachar("A")
  if ((i .ne. 65) .or. char(i) .ne. "A") call abort
end program