Skip to content

Commit 242c68f

Browse files
committed
Added missing file into test separate_subprog_assert_check
The missing file was not apparent because of the XFAIL field in the test.opt file.
1 parent de356ef commit 242c68f

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)