Index: src/Tests/ResolvExpr/Attributes.c
===================================================================
--- src/Tests/ResolvExpr/Attributes.c	(revision 0b2961f2b406f56226db579dae86d2be974d1711)
+++ 	(revision )
@@ -1,19 +1,0 @@
-int @voon;
-double @voon;
-
-int @bort(int);
-int @bort(double);
-
-void g( int );
-
-void f() {
-	float x;
-	double x;
-	@bort(x);
-	@bort(int);
-	g( @voon );
-}
-
-// Local Variables: //
-// tab-width: 4 //
-// End: //
Index: src/Tests/ResolvExpr/Forall.c
===================================================================
--- src/Tests/ResolvExpr/Forall.c	(revision 0b2961f2b406f56226db579dae86d2be974d1711)
+++ 	(revision )
@@ -1,41 +1,0 @@
-int ?=?( int*, int );
-float ?=?( float*, float );
-int * ?=?( int **, int * );
-float * ?=?( float **, float * );
-char ?=?( char*, char );
-void (* ?=?( void (**)(void), void (*)(void) ))(void);
-
-void g1() {
-	forall( type T ) T f( T );
-	void f( int );
-	void h( void (*p)(void) );
-  
-	int x;
-	void (*y)(void);
-	char z;
-	float w;
-  
-	f( x );
-	f( y );
-	f( z );
-	f( w );
-	h( f( y ) );
-}
-
-void g2() {
-	forall( type T ) void f( T, T );
-	forall( type T, type U ) void f( T, U );
-  
-	int x;
-	float y;
-	int *z;
-	float *w;
-  
-	f( x, y );
-	f( z, w );
-	f( x, z );
-}
-
-// Local Variables: //
-// tab-width: 4 //
-// End: //
Index: src/Tests/SynTree/Forall.c
===================================================================
--- src/Tests/SynTree/Forall.c	(revision 0b2961f2b406f56226db579dae86d2be974d1711)
+++ src/Tests/SynTree/Forall.c	(revision b5c5684d38741cc1fee5bb12939570bd0322a24d)
@@ -1,2 +1,40 @@
+int ?=?( int*, int );
+float ?=?( float*, float );
+int * ?=?( int **, int * );
+float * ?=?( float **, float * );
+char ?=?( char*, char );
+void (* ?=?( void (**)(void), void (*)(void) ))(void);
+
+void g1() {
+	forall( type T ) T f( T );
+	void f( int );
+	void h( void (*p)(void) );
+  
+	int x;
+	void (*y)(void);
+	char z;
+	float w;
+  
+	f( x );
+	f( y );
+	f( z );
+	f( w );
+	h( f( y ) );
+}
+
+void g2() {
+	forall( type T ) void f( T, T );
+	forall( type T, type U ) void f( T, U );
+  
+	int x;
+	float y;
+	int *z;
+	float *w;
+  
+	f( x, y );
+	f( z, w );
+	f( x, z );
+}
+
 typedef forall ( type T ) int (*f)( int );
 
Index: src/Tests/Syntax/Attributes.c
===================================================================
--- src/Tests/Syntax/Attributes.c	(revision 0b2961f2b406f56226db579dae86d2be974d1711)
+++ src/Tests/Syntax/Attributes.c	(revision b5c5684d38741cc1fee5bb12939570bd0322a24d)
@@ -21,2 +21,22 @@
     return 7;
 }
+
+int @voon;
+double @voon;
+
+int @bort(int);
+int @bort(double);
+
+void g( int );
+
+void f() {
+	float x;
+	double x;
+	@bort(x);
+	@bort(int);
+	g( @voon );
+}
+
+// Local Variables: //
+// tab-width: 4 //
+// End: //
