blob: a36cebd0f42072db2b2cd2db566d97d4cb0e40d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{ %fail}
{ %norun}
program terecs1;
{$mode delphi}
{$apptype console}
uses
terecs_u1;
var
F: TFoo;
begin
// we can't access private fields
F.F1 := 0;
F.F2 := 1;
end.
|