Index: tests/concurrent/futures/multi.cfa
===================================================================
--- tests/concurrent/futures/multi.cfa	(revision 8590328f89882af5805f978a4120593136b27a8e)
+++ tests/concurrent/futures/multi.cfa	(revision 76c94bf30c4842cbd7f12f16d62ca1cc29083ad9)
@@ -10,4 +10,5 @@
 
 void ?{}( Server & this ) {
+	((thread&)this){"Server Thread"};
 	this.cnt = 0;
 	this.iteration = 0;
@@ -57,4 +58,8 @@
 Server * the_server;
 thread Worker {};
+void ?{}(Worker & this) {
+	((thread&)this){"Worker Thread"};
+}
+
 multi_future(int) * shared_future;
 
