pascalabcnet/TestSuite/intellisense_tests/ispattern3.pas

6 lines
141 B
ObjectPascal
Raw Permalink Normal View History

2018-09-26 21:30:25 +03:00
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.