fpc/tests/test/ucustomattr14a.pp
svenbarth e97a2cb03e * tests with Delphi showed that an attribute class must explicitely declare a parameterless constructor if it should be used, cause TCustomAttribute.Create is private
Note: this also means that TCustomAttribute itself can not be used as an attribute
* adjusted existing tests
+ added test

git-svn-id: trunk@42471 -
2019-07-20 20:03:38 +00:00

30 lines
369 B
ObjectPascal

unit ucustomattr14a;
{$mode objfpc}{$H+}
interface
type
TTestAttribute = class(TCustomAttribute)
constructor Create;
end;
TTest2Attribute = class(TCustomAttribute)
constructor Create(const aStr: String);
end;
implementation
constructor TTestAttribute.Create;
begin
end;
constructor TTest2Attribute.Create(const aStr: String);
begin
end;
end.