mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 05:28:07 +02:00
* handle undefineddef in classify_argument, resolves #27658
git-svn-id: trunk@30239 -
This commit is contained in:
parent
60f24739fc
commit
331ace25c6
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -14334,6 +14334,7 @@ tests/webtbs/tw2758.pp svneol=native#text/plain
|
||||
tests/webtbs/tw2763.pp svneol=native#text/plain
|
||||
tests/webtbs/tw27634.pp svneol=native#text/plain
|
||||
tests/webtbs/tw2765.pp svneol=native#text/plain
|
||||
tests/webtbs/tw27658.pp svneol=native#text/pascal
|
||||
tests/webtbs/tw27665.pp svneol=native#text/plain
|
||||
tests/webtbs/tw2767.pp svneol=native#text/plain
|
||||
tests/webtbs/tw2771.pp svneol=native#text/plain
|
||||
|
@ -705,6 +705,11 @@ unit cpupara;
|
||||
def:=search_system_type('TVARDATA').typedef;
|
||||
result:=classify_argument(def,varspez,def.size,classes,byte_offset);
|
||||
end;
|
||||
undefineddef:
|
||||
{ show shall we know?
|
||||
since classify_argument is called during parsing, see tw27685.pp,
|
||||
we handle undefineddef here }
|
||||
result:=0;
|
||||
else
|
||||
internalerror(2010021405);
|
||||
end;
|
||||
|
14
tests/webtbs/tw27658.pp
Normal file
14
tests/webtbs/tw27658.pp
Normal file
@ -0,0 +1,14 @@
|
||||
{$MODE OBJFPC}
|
||||
program Project1;
|
||||
|
||||
uses gmap;
|
||||
|
||||
type
|
||||
|
||||
generic TMyMap <TKey, TValue, TCompare> = class(specialize TMap<TKey, TValue, TCompare>)
|
||||
end;
|
||||
generic TMyCounter <TKey, TCompare> = class(specialize TMyMap<TKey, SizeUInt, TCompare>)
|
||||
end;
|
||||
|
||||
begin
|
||||
end.
|
Loading…
Reference in New Issue
Block a user