Skip to content

Commit 99bb5a8

Browse files
authored
Merge pull request #263 from tjj2017/missing_test_file
Added missing file into test separate_subprog_assert_check
2 parents 7d755cc + 242c68f commit 99bb5a8

File tree

1 file changed

+7
-0
lines changed
  • testsuite/gnat2goto/tests/separate_subprog_assert_check

1 file changed

+7
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
separate (P)
2+
procedure Inc (N : in out Integer) is
3+
Old_N : constant Integer := N;
4+
begin
5+
N := N + 1;
6+
pragma Assert (N = Old_N + 1);
7+
end Inc;

0 commit comments

Comments
 (0)