Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gnat.dg / image1.adb
blobae8d6805afbccbfb45e5aaf0e0469a85258bf54e
1 -- { dg-do run }
3 with Ada.Text_IO; use Ada.Text_IO;
4 with Ada.Characters.Latin_1;
6 procedure Image1 is
7 Str : String := Ada.Characters.Latin_1.LF'Img;
8 begin
9 if Str /= "LF" then
10 raise Program_Error;
11 end if;
12 end Image1;