aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gnat.dg/dynamic_elab2.ads
blob: 9191dabd549f966217d386de07329413b6eb8629 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
with Dynamic_Elab_Pkg; use Dynamic_Elab_Pkg;

package Dynamic_Elab2 is

  type Plot is record
    B : Boolean;
    Data : R;
  end record;
  pragma Pack (Plot);

  function Get_Plot return Plot;

end Dynamic_Elab2;