Index: sts/bugs/203-3.cfa
===================================================================
--- tests/bugs/203-3.cfa	(revision b81fd952a5ac1533e8228e162fec0eac081416cf)
+++ 	(revision )
@@ -1,16 +1,0 @@
-// Trac ticket: https://cforall.uwaterloo.ca/trac/ticket/203
-
-forall(dtype B)
-struct counter {
-	int count;
-};
-
-forall(dtype D)
-struct wrap_c {
-	counter(D) field;
-};
-
-counter(int) count_obj = {5};
-counter(char) count_obj = {5};
-
-wrap_c(int) error_obj @= { count_obj };
Index: sts/bugs/203-6.cfa
===================================================================
--- tests/bugs/203-6.cfa	(revision b81fd952a5ac1533e8228e162fec0eac081416cf)
+++ 	(revision )
@@ -1,18 +1,0 @@
-// Trac ticket: https://cforall.uwaterloo.ca/trac/ticket/203
-
-forall(dtype G)
-struct base_vtable {
-	base_vtable(G) const * const parent;
-};
-
-forall(dtype H)
-struct child_vtable {
-	base_vtable(H) const * const parent;
-};
-
-base_vtable(int) base_vtable_instance @= { 0 };
-base_vtable(char) base_vtable_instance @= { 0 };
-
-child_vtable(char) child_vtable_instance @= {
-	&base_vtable_instance
-};
