* generate specializations only of no error happened so far to prevent further (internal)errors, resolves #40646

This commit is contained in:
florian 2024-02-18 23:08:21 +01:00
parent 2d6294eb26
commit af482fde23
2 changed files with 19 additions and 2 deletions

View File

@ -2313,9 +2313,10 @@ type
end;
{ Generate specializations of objectdefs methods }
generate_specialization_procs;
if Errorcount=0 then
generate_specialization_procs;
// This needs to be done before we generate the VMTs
{ This needs to be done before we generate the VMTs }
if (target_cpu=tsystemcpu.cpu_wasm32) then
add_synthetic_interface_classes_for_st(current_module.localsymtable);

16
tests/webtbf/tw40646.pp Normal file
View File

@ -0,0 +1,16 @@
{ %fail }
program Project1;
type
generic TFoo<_A: TObject> = class
type x = type _A;
type b = class(x)
end;
end;
TBar = class sealed
end;
TAbc = specialize TFoo<TBar>;
begin
end.