pascalabcnet/TestSuite/question9.pas

6 lines
170 B
ObjectPascal
Raw Normal View History

2022-09-11 15:42:14 +03:00
begin
var x := true ? byte(3) : byte(2);
assert(x.GetType = typeof(byte));
var x1 := true ? word(4) : shortint(3);
assert(x1.GetType() = typeof(integer));
end.