mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 15:47:53 +02:00
12 lines
197 B
ObjectPascal
12 lines
197 B
ObjectPascal
program tclassinfo1;
|
|
|
|
{$apptype console}
|
|
{$mode objfpc}{$H+}
|
|
uses
|
|
Classes;
|
|
begin
|
|
WriteLn(TObject.ClassInfo = TypeInfo(TObject));
|
|
WriteLn(TPersistent.ClassInfo = TypeInfo(TPersistent));
|
|
end.
|
|
|