mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-18 11:11:35 +02:00
18 lines
293 B
ObjectPascal
18 lines
293 B
ObjectPascal
type
|
|
test_one = class
|
|
protected
|
|
fTest : String;
|
|
public
|
|
property Test: String READ fTest WRITE fTest;
|
|
procedure Testen(Test: BOolean);
|
|
{ ^ duplicate identifier? }
|
|
end;
|
|
|
|
|
|
procedure test_one.testen(test: boolean);
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|