PR target/84336
[official-gcc.git] / gcc / testsuite / gnat.dg / string_comparison.adb
blob22e6c9e01b7d791576a9dd9fea452da074425a52
1 -- { dg-do compile }
3 with Ada.Text_IO; use Ada.Text_IO;
5 procedure String_Comparison is
6 package Bool_IO is new Enumeration_IO (Boolean);
7 use Bool_IO;
8 begin
9 Put (Boolean'Image (True) = "True");
10 end;