*** empty log message ***

This commit is contained in:
florian 1999-12-19 12:07:23 +00:00
parent b8d4922188
commit ab313eb964

13
tests/ts/ts010028.pp Normal file
View File

@ -0,0 +1,13 @@
// checks type cast of nil in const statement
type
THandle = longint;
WSAEVENT = THandle;
const
WSA_INVALID_EVENT = WSAEVENT(nil);
var
l : longint;
begin
l:=WSA_INVALID_EVENT*1;
end.