blob: f6aa7194f2a60e5f36a5c19e7e7e1a945901174c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{ %NORUN }
{ This tests that methods introduced by a helper can be found in
with-Statements as well - Case 2: class method in current helper }
program tchlp56;
{$mode objfpc}
type
TObjectHelper = class helper for TObject
class procedure Test;
end;
class procedure TObjectHelper.Test;
begin
end;
begin
with TObject do
Test;
end.
|