Добавлены два тестовых примера, которые стали правильными

This commit is contained in:
miks1965 2016-11-21 18:54:52 +03:00
parent d1c70d1fc0
commit 1116bec3df
6 changed files with 18 additions and 4 deletions

View file

@ -15,7 +15,7 @@ internal static class RevisionClass
public const string Major = "3";
public const string Minor = "2";
public const string Build = "0";
public const string Revision = "1342";
public const string Revision = "1343";
public const string MainVersion = Major + "." + Minor;
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;

View file

@ -1,4 +1,4 @@
%MINOR%=2
%REVISION%=1342
%COREVERSION%=0
%REVISION%=1343
%MINOR%=2
%MAJOR%=3

View file

@ -1 +1 @@
!define VERSION '3.2.0.1342'
!define VERSION '3.2.0.1343'

View file

@ -0,0 +1,4 @@
begin
var t := True? (0,0): (1,1);
Print(t);
end.

View file

@ -0,0 +1,10 @@
function RowSequence(bfbf: array [,] of integer): sequence of integer;
begin
var t := bfbf[0,0];
yield t;
end;
begin
end.

Binary file not shown.