mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-03 20:30:55 +02:00
* 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:
parent
c752050728
commit
b17f90d183
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -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
20
tests/webtbs/tw26402.pp
Normal 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.
|
Loading…
Reference in New Issue
Block a user