1! { dg-do compile }
2! PR 30452 - this used to cause syntax errors due to the presence,
3!            as characters, of bytes 0xfe and 0xff.
4program main
5  if (char (254) /= "") call abort
6  if (char (255) /= "") call abort
7end program main
8