fpc/tests/webtbf/tw25283.pp
Jonas Maebe 048666a25c * when freeing a procdef that hasn't been registered for writing to the ppu
at the end of compiling a unit, also remove it from its owning procsym
    in case the procsym does get written to the ppu (possible because you
    can have extra overloads in the implementation) (mantis #25283)
   o also fixes webtbf/tw4103 on the platforms where this still failed
     (on the platforms where it worked, it worked by accedent since the
      compiler was accessing memory of a freed procdef)

git-svn-id: trunk@35309 -
2017-01-15 17:41:27 +00:00

12 lines
143 B
ObjectPascal

{ %fail }
program main;
{$ifdef FPC}{$mode objfpc}{$h+}{$endif}
uses bugunit;
begin
proc( 1, 2 ); // no error with -B compiler flag
end.