Index: tests/castError.cfa
===================================================================
--- tests/castError.cfa	(revision f8de4e40d5bcd47b9d45d33c9ece4dfaf5a9329e)
+++ tests/castError.cfa	(revision eafec07b12a788288434fcd3ceef84d0588949b2)
@@ -14,5 +14,7 @@
 // 
 
+forall(otype T) struct S { T p; };
 int f;
+S(int) sint;
 
 void f() {
@@ -25,4 +27,6 @@
 	short int v;
 	3, v;		// implicit void cast
+
+	(S(char)) sint;
 }
 
