Добавлены два тестовых примера, которые стали правильными
This commit is contained in:
parent
d1c70d1fc0
commit
1116bec3df
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
%MINOR%=2
|
||||
%REVISION%=1342
|
||||
%COREVERSION%=0
|
||||
%REVISION%=1343
|
||||
%MINOR%=2
|
||||
%MAJOR%=3
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
!define VERSION '3.2.0.1342'
|
||||
!define VERSION '3.2.0.1343'
|
||||
|
|
|
|||
4
TestSuite/CompilationSamples/TupleQuestionOp.pas
Normal file
4
TestSuite/CompilationSamples/TupleQuestionOp.pas
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
begin
|
||||
var t := True? (0,0): (1,1);
|
||||
Print(t);
|
||||
end.
|
||||
10
TestSuite/CompilationSamples/yieldArr2Dim.pas
Normal file
10
TestSuite/CompilationSamples/yieldArr2Dim.pas
Normal 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.
Loading…
Reference in a new issue