1-- { dg-do compile } 2-- { dg-options "-Wuninitialized" } 3 4pragma Warnings (Off); 5 6function Warn9 return Integer is 7 I : Integer; 8begin 9 return I; 10end; 11