Index: doc/rob_thesis/examples/ctor/member.c
===================================================================
--- doc/rob_thesis/examples/ctor/member.c	(revision af68f0aaa97e163696767618f6faf47775f97d9f)
+++ 	(revision )
@@ -1,26 +1,0 @@
-struct T {
-  int x;
-};
-const int val = 12223344;
-void ?{}(T * t) {
-  if (t->x == val) printf("uh-oh, constructed twice!\n");
-  t->x = val;
-}
-
-struct S {
-  T t1, t2;
-};
-
-void ?{}(S * this) {
-  // construct both members
-}
-
-void ?{}(S * this, int x) {
-  // forward
-  ?{}(this);
-  ?{}(&this->t1);
-}
-
-int main() {
-  S s = 5;
-}
