Browse Source

ù* several tbs corrected

pierre 26 years ago
parent
commit
a3c0f5e306
7 changed files with 12 additions and 12 deletions
  1. 3 3
      tests/tbs0132.pp
  2. 2 2
      tests/tbs0139.pp
  3. 1 1
      tests/tbs0139a.pp
  4. 1 1
      tests/tbs0140.pp
  5. 2 2
      tests/tbs0140a.pp
  6. 1 1
      tests/tbs0149a.pp
  7. 2 2
      tests/tbs0149b.pp

+ 3 - 3
tests/tbs0132.pp

@@ -1,12 +1,12 @@
 type
 type
 
 
-  p=^p;
-  p2 = ^p2;
+  p=^p2;
+  p2 = ^p;
 
 
   var a:p;
   var a:p;
       a2:p2;
       a2:p2;
 
 
   begin
   begin
-  	a:=a2;
+  	a:=@a2;
         a:=a2^;
         a:=a2^;
   end.
   end.

+ 2 - 2
tests/tbs0139.pp

@@ -1,8 +1,8 @@
-unit unit2;
+unit tbs0139;
  
  
  interface
  interface
  uses
  uses
-    objpas, bug0139a;
+    objpas, tbs0139a;
  
  
  type
  type
     AnotherClass=class(SomeClass)
     AnotherClass=class(SomeClass)

+ 1 - 1
tests/tbs0139a.pp

@@ -1,4 +1,4 @@
- unit bug0139a;
+ unit tbs0139a;
  
  
  interface
  interface
  
  

+ 1 - 1
tests/tbs0140.pp

@@ -12,7 +12,7 @@ type
  end;
  end;
 implementation
 implementation
 
 
-uses bug0140a;
+uses tbs0140a;
 
 
 constructor TObject.Init(aPar:byte);
 constructor TObject.Init(aPar:byte);
  begin
  begin

+ 2 - 2
tests/tbs0140a.pp

@@ -1,9 +1,9 @@
 
 
-unit bug0140a;
+unit tbs0140a;
 
 
 interface
 interface
 
 
-uses bug0140;
+uses tbs0140;
 
 
 procedure Message(var O:TObject);
 procedure Message(var O:TObject);
 
 

+ 1 - 1
tests/tbs0149a.pp

@@ -1,4 +1,4 @@
-unit bug0149a;
+unit tbs0149a;
 
 
 interface
 interface
 
 

+ 2 - 2
tests/tbs0149b.pp

@@ -1,11 +1,11 @@
 {there is no crash when tset or c from unit a are used in OuterProcedure,
 {there is no crash when tset or c from unit a are used in OuterProcedure,
  it's only a problem when using them in a nested procedure/function}
  it's only a problem when using them in a nested procedure/function}
 
 
-unit bug0149b;
+unit tbs0149b;
 
 
 interface
 interface
 
 
-uses t2a;
+uses tbs0149a;
 
 
 implementation
 implementation