pascalabcnet/TestSuite/errors/err0196.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

17 lines
172 B
ObjectPascal

uses System;
type
MyClass = class
end;
[MyClass]
MyClassAttr = class
a : integer;
public fA : string;
public property Prop : integer read a write a;
end;
begin
end.