Browse Source

* new bug

peter 22 years ago
parent
commit
3e9210af7b
1 changed files with 21 additions and 0 deletions
  1. 21 0
      tests/webtbf/tw2359.pp

+ 21 - 0
tests/webtbf/tw2359.pp

@@ -0,0 +1,21 @@
+{ %FAIL }
+{ %OPT=-St }
+{ Source provided for Free Pascal Bug Report 2359 }
+{ Submitted by "Sergey Kosarevsky" on  2003-02-06 }
+{ e-mail: [email protected] }
+
+{$mode objfpc}
+
+Type tObj=Class
+        ClassFlags:Longint;Static;
+        Class Constructor Init;
+     End;
+
+Class Constructor tObj.Init;
+Begin
+   ClassFlags:=0;
+End;
+
+Begin
+   tObj.Init;
+End.