Retro68/gcc/gcc/testsuite/gfortran.dg/string_0xfe_0xff_1.f90
2018-12-28 16:30:48 +01:00

8 lines
233 B
Fortran

! { dg-do compile }
! PR 30452 - this used to cause syntax errors due to the presence,
! as characters, of bytes 0xfe and 0xff.
program main
if (char (254) /= "þ") STOP 1
if (char (255) /= "ÿ") STOP 2
end program main