Index: tests/collections/stack.cfa
===================================================================
--- tests/collections/stack.cfa	(revision a7d696f24154f74fedcb586aaa645387836cdff2)
+++ tests/collections/stack.cfa	(revision 63d1ebe7115e4450a16b96fb0ea497249a457c47)
@@ -3,15 +3,11 @@
 #include <bits/stack.hfa>
 
-struct Fred {
-		inline Colable;									// Plan 9 inheritance
-		int i;
-};
-
-Stack(Fred) fred;
-
 int main() {
 	// Fred test
 
-	
+	struct Fred {
+		inline Colable;									// Plan 9 inheritance
+		int i;
+	};
 	void ?{}( Fred & fred ) { abort(); }
 	void ?{}( Fred & fred, int p ) with( fred ) {
@@ -22,5 +18,5 @@
 	}
 
-	
+	Stack(Fred) fred;
 	StackIter(Fred) inter = { fred };
 	Fred & f;
