pascalabcnet/TestSuite/match_const_nil.pas

6 lines
82 B
ObjectPascal
Raw Permalink Normal View History

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