* test for mantis #26402 (already fixed in 3.1.1, still broken in 3.0)

git-svn-id: trunk@34282 -
This commit is contained in:
Jonas Maebe 2016-08-12 13:35:37 +00:00
parent c752050728
commit b17f90d183
2 changed files with 21 additions and 0 deletions

1
.gitattributes vendored
View File

@ -14947,6 +14947,7 @@ tests/webtbs/tw2627.pp svneol=native#text/plain
tests/webtbs/tw26271.pp svneol=native#text/pascal
tests/webtbs/tw26288.pp svneol=native#text/pascal
tests/webtbs/tw2631.pp svneol=native#text/plain
tests/webtbs/tw26402.pp svneol=native#text/plain
tests/webtbs/tw26403.pp svneol=native#text/pascal
tests/webtbs/tw26408.pp svneol=native#text/pascal
tests/webtbs/tw2643.pp svneol=native#text/plain

20
tests/webtbs/tw26402.pp Normal file
View File

@ -0,0 +1,20 @@
{ %opt=-vh -Seh }
{ %norun }
{$MODESWITCH ADVANCEDRECORDS+}
program test;
type
TestInternals = record
private
type
TTest = record
Bar: AnsiString;
end;
end;
var
Foo: TestInternals.TTest;
begin
Foo.Bar := '';
end.