|
 |
TEST: 060203B-T12-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 (15, 6) Illegal operand types 'real{64}' and 'set{32}' for 'in' operator |
| PASSED | Compiler: 1.2.8.0 Date, time: 2010.08.06, 22:22 Compilation: ERROR Execution: NOT RUN (15, 6) Illegal operand types 'real{64}' and 'set{32}' for 'in' operator (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   19   20  
| (**
* 6. Expression.
* 6.2. Predefined Operators.
* 6.2.4. Set Operators.
*
* Negative test: not set is used in in operator.
*)
module Main;
import A;
var s : set;
begin
s := {1, 2, 3};
if (2.0 in s)
then halt(0) else halt(1) end;
end Main.
object A.B;
end B.
| 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
|
|