Index: tests/concurrent/examples/boundedBufferEXT.cfa
===================================================================
--- tests/concurrent/examples/boundedBufferEXT.cfa	(revision b7d6a36126af369a09bd3958b2fe17c537999f77)
+++ tests/concurrent/examples/boundedBufferEXT.cfa	(revision ebb7b660085904ecf5e3bfc628b05964bbda7256)
@@ -1,5 +1,5 @@
 //
 // Cforall Version 1.0.0 Copyright (C) 2018 University of Waterloo
-// 
+//
 // The contents of this file are covered under the licence agreement in the
 // file "LICENCE" distributed with Cforall.
@@ -87,9 +87,10 @@
 }
 
+enum { Prods = 4, Cons = 5 };
+Producer * prods[Prods];
+Consumer * cons[Cons];
+
 int main() {
 	Buffer(int) buffer;
-	enum { Prods = 4, Cons = 5 };
-	Producer * prods[Prods];
-	Consumer * cons[Cons];
 	int sums[Cons];
 	int i;
