|
 |
TEST: 050301E-T07-X
categorystatusCompilation and execution results for Windows (first) and Mono (second)PASSED | Compiler: 1.2.8.0 Date, time: 2010.08.06, 18:06 Compilation: ERROR Execution: NOT RUN (12, 2) Syntax error in statement: no statement finalizer (18, 1) Wrong final identifier for module Main. It should repeat the name. (18, 1) Lexem '.' expected (18, 1) Unknown unit keyword 'end' |
| PASSED | Compiler: 1.2.8.0 Date, time: 2010.08.06, 22:22 Compilation: ERROR Execution: NOT RUN (12, 2) Syntax error in statement: no statement finalizer (18, 1) Wrong final identifier for module Main. It should repeat the name. (18, 1) Lexem '.' expected (18, 1) Unknown unit keyword 'end' (0, 0) Assembly reference not resolved: System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a. |
|
code
1   2   3   4   5   6   7   8   9   10   11   12   13   14   15   16   17   18  
| (**
* 5. Declarations.
* 5.3. Type declaration.
* 5.3.1. Basic types.
* set type
*
* Positive test: set value does not accept min(set)-1 value.
*)
module Main;
var s : set;
begin
begin
s := { min(set) - 1 };
halt(0);
on OutOfRange do
halt(1);
end
end Main.
| information- PASSED - overall positive decision about the test
- NOT PASSED - overall negative decision about the test
- SUCCESS - compilation / execution successful
- ERROR - compilation failed with normal syntax or semantic error
- ABORT - compilation failed because of an internal compiler error
- NOT RUN - the test was not / not supposed to be executed
- FAIL - execution failed
|
|