pascalabcnet/TestSuite/match_const_nil.pas
2019-05-25 21:53:02 +03:00

6 lines
82 B
ObjectPascal

begin
var l: List<integer>;
match l with
nil: Assert(l=nil)
end;
end.