Index: src/tests/.expect/tupleVariadic.txt
===================================================================
--- src/tests/.expect/tupleVariadic.txt	(revision 64eae5636740bd0793ff27432eb02ade2386bec3)
+++ src/tests/.expect/tupleVariadic.txt	(revision 0c286cfb20d6d3d7349e7b9e1173b377dba3fa2c)
@@ -1,2 +1,6 @@
+called ?{} with no a
+array = { }
+called ?{} with a: 999
+array = { 999, }
 called ?{} with a: 123 456
 array = { 123, 456, }
Index: src/tests/tupleVariadic.c
===================================================================
--- src/tests/tupleVariadic.c	(revision 64eae5636740bd0793ff27432eb02ade2386bec3)
+++ src/tests/tupleVariadic.c	(revision 0c286cfb20d6d3d7349e7b9e1173b377dba3fa2c)
@@ -79,10 +79,9 @@
 
 int main() {
-	// xxx - these two don't work just yet
-	// array * x0 = new();
-	// print(x0);
+	array * x0 = new();
+	print(x0);
 
-	// array * x1 = new(999);
-	// print(x1);
+	array * x1 = new(999);
+	print(x1);
 
 	array * x2 = new(123, 456);
