16
17
18
19
20
21
22
23
24
25
|
end Linker;
package Naming is
case Natools.Safety is
when "None" =>
for body ("Natools.References.Tools")
use "natools-references-tools__unsafe.adb";
end case;
end Naming;
end Tests;
|
>
>
>
|
16
17
18
19
20
21
22
23
24
25
26
27
28
|
end Linker;
package Naming is
case Natools.Safety is
when "None" =>
for body ("Natools.References.Tools")
use "natools-references-tools__unsafe.adb";
when "Portable" =>
for body ("Natools.References.Tools")
use "natools-references-tools__protected.adb";
end case;
end Naming;
end Tests;
|