mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:38:14 +02:00

Also adjusted test for report 20836 (removed unneeded units and the {$R ...} directive completely and added a "%NORUN" modifier). git-svn-id: trunk@19817 -
41 lines
534 B
ObjectPascal
41 lines
534 B
ObjectPascal
unit tw20796b;
|
|
|
|
{$MODE DELPHI}
|
|
{$DEFINE CRASHCOMPILER}
|
|
|
|
interface
|
|
|
|
type
|
|
TWrapper<TValue> = class
|
|
strict private
|
|
FValue: TValue;
|
|
public
|
|
property Value: TValue read FValue write FValue;
|
|
{$IFDEF CRASHCOMPILER}
|
|
procedure SomeMethod;
|
|
{$ENDIF}
|
|
end;
|
|
|
|
TTestClass = class
|
|
public
|
|
procedure DoTest;
|
|
end;
|
|
|
|
implementation
|
|
|
|
{$IFDEF CRASHCOMPILER}
|
|
procedure TWrapper<TValue>.SomeMethod;
|
|
begin
|
|
end;
|
|
{$ENDIF}
|
|
|
|
procedure TTestClass.DoTest;
|
|
type
|
|
TByteWrapper = TWrapper<Byte>;
|
|
var
|
|
w: TByteWrapper;
|
|
begin
|
|
end;
|
|
|
|
end.
|