mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:38:14 +02:00
* formatting
+ test for issue #41066 which was already resolved previously
This commit is contained in:
parent
d147488133
commit
553a1b968d
@ -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
44
tests/webtbs/tw41066.pp
Normal 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.
|
Loading…
Reference in New Issue
Block a user