11 lines
153 B
Ada
11 lines
153 B
Ada
|
-- { dg-do compile }
|
||
|
-- { dg-options "-Wuninitialized" }
|
||
|
|
||
|
pragma Warnings (Off);
|
||
|
|
||
|
function Warn9 return Integer is
|
||
|
I : Integer;
|
||
|
begin
|
||
|
return I;
|
||
|
end;
|