summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/test/talign1.pp
blob: 63896bf5790c6269eeac3380c089766c2fb02c3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ 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.