mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 09:39:25 +02:00
24 lines
390 B
ObjectPascal
24 lines
390 B
ObjectPascal
{ This verifies if the resource string table
|
|
is correctly aligned, normally the assembler
|
|
should be verified manually.
|
|
}
|
|
unit talign1;
|
|
|
|
{$mode objfpc}
|
|
|
|
interface
|
|
|
|
resourcestring
|
|
First = 'This is is a small test of a unit for resource strings';
|
|
Second = 'This is also a small test';
|
|
|
|
implementation
|
|
|
|
end.
|
|
{
|
|
$Log$
|
|
Revision 1.2 2005-02-14 17:13:35 peter
|
|
* truncate log
|
|
|
|
}
|