* fi.po: Update.
[official-gcc.git] / gcc / testsuite / gnat.dg / opt59_pkg.adb
blob16a183b47e56dc2a19fb5092123cfbf30c02e331
1 package body Opt59_Pkg is
3 function Get_BV1 return Boolean_Vector is
4 begin
5 return (others => True);
6 end;
8 function Get_BV2 return Boolean_Vector is
9 begin
10 return (others => False);
11 end;
13 procedure Test (B : Boolean) is
14 begin
15 if not B then
16 raise Program_Error;
17 end if;
18 end;
20 end Opt59_Pkg;