analyzer: Fix PR analyzer/101980
[official-gcc.git] / gcc / testsuite / gnat.dg / opt78.ads
blob2c489bd7b38c1a4fe3c2bf0a69aae7d693813c29
1 package Opt78 is
3 subtype Reasonable is Integer range 1..10;
5 type UC (D: Reasonable := 2) is record
6 S: String (1 .. D) := "Hi";
7 end record;
9 type AUC is access all UC;
11 procedure Proc (P : UC; Msg : String);
13 end Opt78;