pascalabcnet/TestSuite/intellisense_tests/ispattern3.pas
Бондарев Иван bf15f25d43 fix #1253
2018-09-26 20:30:25 +02:00

6 lines
141 B
ObjectPascal

begin
var o: object := byte(5);
var ok := (o is byte(var b)) and (b{@var b: byte;@}=5);
ok.Print;
writeln(b{@var b: byte;@});
end.