view gcc/testsuite/gnat.dg/lto19_pkg1.ads @ 127:4c56639505ff

fix function.c and add CbC-example Makefile
author mir3636
date Wed, 11 Apr 2018 18:46:58 +0900
parents 04ced10e8804
children
line wrap: on
line source

with Lto19_Pkg2;

package Lto19_Pkg1 is

  type Arr is array (1 .. Lto19_Pkg2.UB) of Integer;

  type Rec is record
    A : Arr;
    I : Integer;
  end record;

  procedure Proc (R : Rec);

end Lto19_Pkg1;