Browse Source

* part of r13334, forgot to commit

git-svn-id: trunk@13343 -
Jonas Maebe 16 years ago
parent
commit
ae476a9b6a
1 changed files with 5 additions and 5 deletions
  1. 5 5
      tests/webtbs/tw3971.pp

+ 5 - 5
tests/webtbs/tw3971.pp

@@ -18,15 +18,15 @@ type
         end;
         
         TDemo = object
-                constructor init;
-                destructor Destroy;
-                procedure doSomething;
-                procedure doSomething2;
-                
                 member1 : byte;
                 member5 : longint;
                 member6 : int64;
                 y : array[0..2] of TDemo1;
+
+                constructor init;
+                destructor Destroy;
+                procedure doSomething;
+                procedure doSomething2;
         end;
 var
         x : array[0..2] of TDemo;