mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 16:47:53 +02:00
20 lines
316 B
ObjectPascal
20 lines
316 B
ObjectPascal
{ %FAIL }
|
|
{ Source provided for Free Pascal Bug Report 4529 }
|
|
{ Submitted by "Vincent Snijders" on 2005-11-20 }
|
|
{ e-mail: vsnijders@quicknet.nl }
|
|
program Project1;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Classes
|
|
{ add your units here };
|
|
|
|
type
|
|
MyClass = class(TComponent)
|
|
FClassVar: integer; static;
|
|
end;
|
|
|
|
begin
|
|
end.
|