RISC-V: Add support for riscv-*-*.
[official-gcc.git] / gcc / testsuite / gnat.dg / gen_formal_pkg_w.ads
blobd3100b74df73d361232082823ff61025c7ed3062
1 with Gen_Formal_Pkg_A, Gen_Formal_Pkg_B;
3 generic
4 with package Ai is new Gen_Formal_Pkg_A (<>);
5 package Gen_Formal_Pkg_W is
7 procedure P1 (T : Ai.T1) is null;
9 package Bi is new Gen_Formal_Pkg_B (Ai.T1, Ai);
11 procedure P2 (T : Ai.T1) is null;
13 end Gen_Formal_Pkg_W;