Index: benchmark/creation/cfa_gen.cfa
===================================================================
--- benchmark/creation/cfa_gen.cfa	(revision 69e398f0e73ce710840cb39ed816797ca2f9faa1)
+++ benchmark/creation/cfa_gen.cfa	(revision fd2b607860f0e973a49748ed5df2a95399f12edc)
@@ -1,9 +1,9 @@
-#include "bench.h"
+#include "../bench.h"
 
-struct C {
+generator G {
 	volatile int restart; // ensure compiler does not optimize away all the code
 };
-void ?{}( C & c ) { c.restart = 0; }
-void main( C & ) {}
+void ?{}( G & g ) { g.restart = 0; }
+void main( G & ) {}
 
 int main( int argc, char * argv[] ) {
@@ -11,5 +11,5 @@
 	BENCH(
 		for ( times ) {
-			 C c;
+			 G g;
 		},
 		result
