text
stringlengths
0
234
Function Body: procedure P(X: in out Integer) is begin new_line; end;
begin
P(42);
Function Definition: procedure Test is
Function Body: function F(X: in out Integer) return integer is begin return 0; end;
begin
if F(42) = 0 then new_line; end if;
Function Definition: procedure Test is
Function Body: procedure P(A: integer; A: character) is begin New_Line; end;
begin
P(0,'a');
Function Definition: procedure Test is
Function Body: type T;
procedure P is begin New_Line; end;
type T is record A: Integer; end record;
begin
New_Line;
Function Definition: procedure Test is
Function Body: procedure P(X: in Integer) is begin X := 0; end;
begin
P(42);
Function Definition: procedure Test is
Function Body: type T is record A: Integer; end record;
T: Integer;
begin
New_Line;
Function Definition: procedure Test is
Function Body: type R is record A: Integer; end record;
procedure P(X: in R) is begin X.A := 0; end;
v: R;
begin
P(v);
Function Definition: procedure Test is
Function Body: type R is record A: Integer; end record;
procedure P(X: in R) is begin X.A := 0; end;
v: R;
begin
P(v);
Function Definition: procedure P is
Function Body: type t is record x: integer; end record;
type t is record y: integer; end record;
begin
new_line;
Function Definition: procedure Test is
Function Body: function F(X: in Integer) return integer is begin X:= 1; return 0; end;
begin
if F(42) = 0 then new_line; end if;
Function Definition: procedure Test is
Function Body: function F(A, A: integer) return integer is begin return 0; end;
begin
New_Line;
Function Definition: procedure Test is
Function Body: begin
for I in 'a' .. 10 loop
New_Line;
end loop;
Function Definition: procedure Test is
Function Body: procedure P(X: in out Integer) is begin new_line; end;
type r is record a: integer; end record;
function f return access r is begin return new r; end;
begin
P(f.a);
Function Definition: procedure Test is
Function Body: X: Integer;
procedure P is
procedure X is begin New_Line; end;
begin
X;
Function Definition: procedure Test is
Function Body: function Oups(N: Integer) return Integer is
L : Integer := Oups(N);
begin
return 0;
Function Definition: procedure Test is
Function Body: type R is record Foo: access R; end record;
begin
New_Line;
Function Definition: procedure Test is
Function Body: X: Integer;
procedure P is
type X is record A: Integer; end record;
V: X;
begin
New_Line;