fpc/tests/test/ucustomattr14b.pp
svenbarth b945e66e28 * store attribute information in PPU; this is less important for the compiler, but more for e.g. Lazarus when dealing with binary only units
* increase ppu version
+ added test
* adjust ppudump to handle attributes as well
ToDo: output parameter nodes as well

git-svn-id: trunk@42401 -
2019-07-12 22:07:46 +00:00

37 lines
391 B
ObjectPascal

unit ucustomattr14b;
{$mode objfpc}{$H+}
{$modeswitch prefixedattributes}
interface
uses
ucustomattr14a;
type
[TTest]
TMyClass = class
end;
[TTest2('Hello World')]
TMyClass2 = class
end;
{$M+}
TMyClass3 = class
private
fTest: LongInt;
published
[TTest2('Foobar')]
[TTest]
property Test: LongInt read fTest;
end;
{$M-}
implementation
end.