blob: 16867f05c68587798705b2454aabb627de4d2ea0 (
plain)
1
2
3
4
5
6
7
|
! { 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) /= "�") call abort
if (char (255) /= "�") call abort
end program main
|