fpc/tests/webtbs/tw7679.pp
peter e70355cb57 * test for copying of typenode
git-svn-id: trunk@5081 -
2006-10-29 23:36:02 +00:00

15 lines
253 B
ObjectPascal

{$mode objfpc}
{$h+}
uses
TypInfo;
type
Enum = (a, b, c);
var
S : string;
begin
S := 'Text';
S := S + 'xyz' + GetEnumName(TypeInfo(Enum), 1); // This line generate error
S := 'xyz' + GetEnumName(TypeInfo(Enum), 1); // This line is OK!
end.