mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 15:47:54 +02:00
* fixed over-eager rejection of tobjecttype.fieldname expression after r40785
(mantis #35149) git-svn-id: trunk@41474 -
This commit is contained in:
parent
970188907e
commit
aba3f8f162
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -14806,6 +14806,7 @@ tests/webtbf/tw34821.pp svneol=native#text/plain
|
||||
tests/webtbf/tw3488.pp svneol=native#text/plain
|
||||
tests/webtbf/tw3495.pp svneol=native#text/plain
|
||||
tests/webtbf/tw3502.pp svneol=native#text/plain
|
||||
tests/webtbf/tw35149a.pp svneol=native#text/plain
|
||||
tests/webtbf/tw3553.pp svneol=native#text/plain
|
||||
tests/webtbf/tw3562.pp svneol=native#text/plain
|
||||
tests/webtbf/tw3583.pp svneol=native#text/plain
|
||||
@ -16537,6 +16538,7 @@ tests/webtbs/tw3504.pp svneol=native#text/plain
|
||||
tests/webtbs/tw3506.pp svneol=native#text/plain
|
||||
tests/webtbs/tw35139.pp svneol=native#text/plain
|
||||
tests/webtbs/tw35139a.pp svneol=native#text/plain
|
||||
tests/webtbs/tw35149.pp svneol=native#text/plain
|
||||
tests/webtbs/tw3523.pp svneol=native#text/plain
|
||||
tests/webtbs/tw3529.pp svneol=native#text/plain
|
||||
tests/webtbs/tw3531.pp svneol=native#text/plain
|
||||
|
@ -1400,9 +1400,7 @@ implementation
|
||||
(current_procinfo.procdef.struct=structh))) then
|
||||
Message(parser_e_only_class_members)
|
||||
else
|
||||
Message(parser_e_only_class_members_via_class_ref)
|
||||
else if isobjecttype then
|
||||
Message(parser_e_only_static_members_via_object_type);
|
||||
Message(parser_e_only_class_members_via_class_ref);
|
||||
p1:=csubscriptnode.create(sym,p1);
|
||||
end;
|
||||
end;
|
||||
|
14
tests/webtbf/tw35149a.pp
Normal file
14
tests/webtbf/tw35149a.pp
Normal file
@ -0,0 +1,14 @@
|
||||
{ %fail }
|
||||
|
||||
program project1;
|
||||
|
||||
{$mode objfpc}
|
||||
type
|
||||
TestObject = object
|
||||
var
|
||||
TestNested: Integer;
|
||||
end;
|
||||
|
||||
begin
|
||||
writeln(TestObject.TestNested);
|
||||
end.
|
14
tests/webtbs/tw35149.pp
Normal file
14
tests/webtbs/tw35149.pp
Normal file
@ -0,0 +1,14 @@
|
||||
{ %norun }
|
||||
|
||||
program project1;
|
||||
|
||||
{$mode objfpc}
|
||||
type
|
||||
TestObject = object
|
||||
var
|
||||
TestNested: Integer;
|
||||
end;
|
||||
|
||||
begin
|
||||
writeln(SizeOf(TestObject.TestNested));
|
||||
end.
|
Loading…
Reference in New Issue
Block a user