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

17 lines
188 B
ObjectPascal

type TClass = class
a : integer;
constructor(a : integer);
begin
self.a := a;
end;
class function operator explicit(t: TClass):TClass;
begin
Result := t.a;
end;
end;
begin
end.