blob: fba0a08974f4ec515cd491fbeab0d94597fbc58b [file] [log] [blame]
! 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