fpc/tests/webtbs/tw22796.pp
Jonas Maebe 64740049bf * fix for mantis #22796: add alignment padding to records before inserting
hidden parameters while parsing the interface, because they may depend on
    the padded size (since the size was not yet padded in the interface and
    padded in the implementation, this could result in differences)

git-svn-id: trunk@22414 -
2012-09-17 14:34:03 +00:00

27 lines
469 B
ObjectPascal

{ %norun }
program CompileError;
{$mode delphi}{$H+}
//uses Classes;
type
TWordTagValue = record
strict private
FValue: Word;
FMissingOrInvalid: Boolean; // Try to disable this line !
public
class function CreateFromString(const AString: string): TWordTagValue; static;
property Value: Word read FValue;
end;
class function TWordTagValue.CreateFromString(const AString: string): TWordTagValue;
begin
Result.FValue := 0;
end;
begin
end.