pascalabcnet/TestSuite/match_const_pointer_nil.pas

6 lines
77 B
ObjectPascal
Raw Permalink Normal View History

begin
var l: ^integer;
match l with
nil: Assert(l=nil)
end;
end.