blob: 34c4eb3b78d6fefffb544ec50d91c0f5c3eaaf40 [file] [log] [blame]
-- { dg-do compile }
procedure Expr_Func5 is
type T is (B);
function F return T is (B);
type R (W : T := F) is null record;
V : R;
begin
null;
end Expr_Func5;