PR tree-optimization/86415 - strlen() not folded for substrings within constant arrays
[official-gcc.git] / gcc / testsuite / gnat.dg / lto6_pkg.ads
blob81b7ddc5a87dc89f093d5563a0253380d1d8328e
1 with Ada.Finalization; use Ada.Finalization;
3 package Lto6_Pkg is
4 type F_String is new Controlled with record
5 Data : access String;
6 end record;
7 Null_String : constant F_String := (Controlled with Data => null);
8 end Lto6_Pkg;