summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/webtbs/tw5100.pp
blob: c35697a4aaedafbbdcc1875a222bf6b0a96704a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ %norun }
{ %OPT=-Sen -vn }

unit tw5100; 

{$mode objfpc}{$H+}

interface

type

  { TA }

  TA = class
  private
    FT: string;
  protected
    property T: string read FT write FT;
  end;

  TB = class
  private
    FT: string;
    property T: string read FT write FT;
  protected
    procedure test;
  end;
  
implementation

procedure tb.test;
begin
  writeln(t);
end;

end.