Index: tests/bugs/196.cfa
===================================================================
--- tests/bugs/196.cfa	(revision d13dd6b82e4f60add43cb432d50d3713df78e870)
+++ tests/bugs/196.cfa	(revision 11054ebabd4e6fc888222295c6cc3ff8811ba9fa)
@@ -2,8 +2,8 @@
 // https://cforall.uwaterloo.ca/trac/ticket/196
 
-forall(dtype T)
+forall(T &)
 struct link;
 
-forall(dtype T)
+forall(T &)
 struct link {
 	link(T) * next;
@@ -12,13 +12,13 @@
 // -----
 
-forall(dtype T)
+forall(T &)
 struct foo;
 
-forall(dtype U)
+forall(U &)
 struct bar {
 	foo(U) * data;
 };
 
-forall(dtype T)
+forall(T &)
 struct foo {};
 
