mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 06:29:32 +02:00
17 lines
232 B
ObjectPascal
17 lines
232 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tw40621;
|
|
{$mode delphi}{$H+}
|
|
uses uw40621;
|
|
|
|
var
|
|
X: TRecord< int32 >; // declared in unitFault
|
|
|
|
begin
|
|
X.PrivateMember := 'Should not be able to assign this.';
|
|
//Writeln( X.PrivateMember );
|
|
//Readln;
|
|
end.
|
|
|
|
|