fpc/tests/webtbs/tw9076.pp
Jonas Maebe 62b3b307e0 * also process all subnodes of try-except and try-finally in
foreachnode(static) (fixes first example of mantis #9076)

git-svn-id: trunk@7671 -
2007-06-15 17:36:09 +00:00

30 lines
365 B
ObjectPascal

{ %norun }
unit tw9076;
{$mode objfpc}
interface
type
pfdset = pointer;
function __Select(N: Longint; ReadFds: PFDSet; WriteFds: PFDSet;
ExceptFds: PFDSet): Longint; inline;
implementation
function __Select(N: Longint; ReadFds: PFDSet; WriteFds: PFDSet;
ExceptFds: PFDSet): Longint;
begin
try
result := 2
except
Result := -1
end
end;
end.