Index: tests/collections/stack.cfa
===================================================================
--- tests/collections/stack.cfa	(revision 33b7d490d37c1f84e96a85cdf1c8baad2b08aeb8)
+++ tests/collections/stack.cfa	(revision a7d696f24154f74fedcb586aaa645387836cdff2)
@@ -3,11 +3,15 @@
 #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 ) {
@@ -18,5 +22,5 @@
 	}
 
-	Stack(Fred) fred;
+	
 	StackIter(Fred) inter = { fred };
 	Fred & f;
