fpc/tests/webtbs/uw2834.pp
2003-12-10 17:12:35 +00:00

20 lines
226 B
ObjectPascal

unit uw2834;
{$ifdef fpc}{$mode objfpc}{$H+}{$endif}
interface
type
TMyType = 1..2;
function PrintTypeInfo:pointer;
implementation
function PrintTypeInfo:pointer;
begin
result:=pointer(TypeInfo(TMyType));
end;
end.