mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 00:28:24 +02:00
14 lines
240 B
ObjectPascal
14 lines
240 B
ObjectPascal
{ %fail }
|
|
|
|
{ Source provided for Free Pascal Bug Report 2403 }
|
|
{ Submitted by "Sergey Kosarevsky" on 2003-03-01 }
|
|
{ e-mail: netsurfer@au.ru }
|
|
{$MODE DELPHI}
|
|
|
|
Type tObj=Class
|
|
End;
|
|
|
|
Begin
|
|
If tObj Is 'tClass' Then WriteLn('OK');
|
|
End.
|