fpc/tests/webtbf/tw2359.pp
paul 8166148a37 compiler: 'static' keyword:
- deprecate -St compiler switch
  - remove $STATIC directive
  - unconditionally enable 'static' keyword usage
  - adopt tests, samplecfg, fpc.cft, error messages

git-svn-id: trunk@14569 -
2010-01-07 19:02:09 +00:00

21 lines
337 B
ObjectPascal

{ %FAIL }
{ Source provided for Free Pascal Bug Report 2359 }
{ Submitted by "Sergey Kosarevsky" on 2003-02-06 }
{ e-mail: netsurfer@au.ru }
{$mode objfpc}
Type tObj=Class
ClassFlags:Longint;Static;
Class Constructor Init;
End;
Class Constructor tObj.Init;
Begin
ClassFlags:=0;
End;
Begin
tObj.Init;
End.