fpc/tests/webtbs/tw18420.pp
florian e99c4d1950 + support str(<boolean>,...), boolean is an enumeration type
* don't run pass_1 on str or val calls in generic method/procedure definitions, resolves #18420

git-svn-id: trunk@16849 -
2011-01-30 14:27:09 +00:00

26 lines
249 B
ObjectPascal

unit tw18420;
{$mode objfpc}{$H+}
interface
type
generic TGC<T> = class
Value: T;
procedure M;
end;
TGI = specialize TGC<Integer>;
implementation
procedure TGC.M;
var
s: String;
begin
Str(Value,s);
Val(s,Value);
end;
end.