You've already forked libadalang
mirror of
https://github.com/AdaCore/libadalang.git
synced 2026-02-12 12:28:54 -08:00
12 lines
263 B
Ada
12 lines
263 B
Ada
procedure Test is
|
|
type Arr is array (Positive range <>) of Integer;
|
|
|
|
A : Arr := (1 .. 10 => True);
|
|
pragma Test_Statement (Expect_Fail => True);
|
|
|
|
B : Arr := (True .. False => 2);
|
|
pragma Test_Statement (Expect_Fail => True);
|
|
begin
|
|
null;
|
|
end Test;
|