Index: tests/raii/ctor-autogen.cfa
===================================================================
--- tests/raii/ctor-autogen.cfa	(revision 3e5dd91354f39b161547cc1119ecef5890aa765f)
+++ tests/raii/ctor-autogen.cfa	(revision 9db2c920685ec71921fa077d452ed8cea1850f4e)
@@ -33,5 +33,5 @@
 
 // dtype-static generic type is otype
-forall(dtype T)
+forall(T &)
 struct DtypeStaticStruct {
   T * data;
@@ -39,5 +39,5 @@
 };
 
-forall(dtype T)
+forall(T &)
 union DtypeStaticUnion {
   T * data;
@@ -46,10 +46,10 @@
 
 // dynamic generic type is otype
-forall(otype T)
+forall(T)
 struct DynamicStruct {
 	T x;
 };
 
-forall(otype T)
+forall(T)
 union DynamicUnion {
 	T x;
@@ -80,5 +80,5 @@
 
 
-forall(otype T)
+forall(T)
 T identity(T x) { return x; }
 
