mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 23:47:52 +02:00
* added test, issue is fixed by r48758 already
git-svn-id: trunk@49075 -
This commit is contained in:
parent
47eb7cec0c
commit
b4eb1780ad
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -18497,6 +18497,7 @@ tests/webtbs/tw3411.pp svneol=native#text/plain
|
||||
tests/webtbs/tw34124.pp svneol=native#text/pascal
|
||||
tests/webtbs/tw3418.pp svneol=native#text/plain
|
||||
tests/webtbs/tw3423.pp svneol=native#text/plain
|
||||
tests/webtbs/tw34232.pp svneol=native#text/pascal
|
||||
tests/webtbs/tw34239.pp svneol=native#text/pascal
|
||||
tests/webtbs/tw34287.pp svneol=native#text/pascal
|
||||
tests/webtbs/tw3429.pp svneol=native#text/plain
|
||||
|
16
tests/webtbs/tw34232.pp
Normal file
16
tests/webtbs/tw34232.pp
Normal file
@ -0,0 +1,16 @@
|
||||
program Project1;
|
||||
{$mode objfpc}{$H+}
|
||||
type
|
||||
generic TTest<TKey, TValue> = packed object
|
||||
type
|
||||
TPair = packed record
|
||||
key: TKey;
|
||||
value: TValue;
|
||||
end;
|
||||
TPairSizeEquivalent = packed array[1..sizeof(TPair)] of byte;
|
||||
end;
|
||||
TTestStringString = specialize TTest<string, string>;
|
||||
|
||||
begin
|
||||
writeln(sizeof(TTestStringString.TPairSizeEquivalent));
|
||||
end.
|
Loading…
Reference in New Issue
Block a user