* formatting

+ test for issue #41066 which was already resolved previously
This commit is contained in:
florian 2024-12-23 16:11:03 +01:00
parent d147488133
commit 553a1b968d
2 changed files with 49 additions and 5 deletions

View File

@ -1211,12 +1211,12 @@ implementation
object_member_blocktype:=bt_type;
if (token=_LECKKLAMMER) and (m_prefixed_attributes in current_settings.modeswitches) then
begin
check_unbound_attributes;
types_dec(true,hadgeneric, rtti_attrs_def);
end
begin
check_unbound_attributes;
types_dec(true,hadgeneric, rtti_attrs_def);
end
else
// expect at least one type declaration
{ expect at least one type declaration }
if token<>_ID then
consume(_ID);
end;

44
tests/webtbs/tw41066.pp Normal file
View File

@ -0,0 +1,44 @@
program Project1;
{$mode objfpc}{$H+}
{$modeswitch prefixedattributes}
uses
Classes;
type
{ TMyAttribute }
TMyAttribute = class(TCustomAttribute)
constructor Create(AVal: Boolean);
private
FVal: Boolean;
published
property Val: Boolean read FVal;
end;
TMyObject = class
public
type
TFoobar = (fbOne, fbTwo);
[TMyAttribute(False)] // this works fine
TFoo = (fooOne, fooTwo);
public
type
[TMyAttribute(False)] // project1.lpr(30,7) Error: Syntax error, "identifier" expected but "[" found
TBar = (barOne, barTwo);
end;
{ TMyAttribute }
constructor TMyAttribute.Create(AVal: Boolean);
begin
FVal := AVal;
end;
begin
end.