You've already forked libadalang
mirror of
https://github.com/AdaCore/libadalang.git
synced 2026-02-12 12:28:54 -08:00
15 lines
198 B
Ada
15 lines
198 B
Ada
with Ada.Text_IO; use Ada.Text_IO;
|
|
|
|
procedure Foo is
|
|
#if X'Defined then
|
|
procedure $X is
|
|
begin
|
|
Put_Line ("$X");
|
|
end $X;
|
|
#else
|
|
procedure Bar is null;
|
|
#end if;
|
|
begin
|
|
Bar;
|
|
end Foo;
|