mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
19 lines
225 B
ObjectPascal
19 lines
225 B
ObjectPascal
{ %FAIL }
|
|
|
|
{$mode objfpc}
|
|
{$modeswitch multihelpers}
|
|
|
|
unit tw36223;
|
|
interface
|
|
uses
|
|
SysUtils;
|
|
|
|
type
|
|
// ERROR: Compilation raised exception internally
|
|
TMyHelper = class helper for TSomeObject
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|