Index: tests/tuple/tupleAssign.cfa
===================================================================
--- tests/tuple/tupleAssign.cfa	(revision fd54fef231baeeb0016103bf19cc8e6d87287faf)
+++ tests/tuple/tupleAssign.cfa	(revision d84f2ae33ff967a0dcd536586c44e74523d30775)
@@ -48,5 +48,5 @@
 			int z;
 		} x;
-		X ?=?(X & x, double d) { return x; }
+		X ?=?(X & x, double) { return x; }
 		[int, double, int] t;
 
Index: tests/tuple/tuplePolymorphism.cfa
===================================================================
--- tests/tuple/tuplePolymorphism.cfa	(revision fd54fef231baeeb0016103bf19cc8e6d87287faf)
+++ tests/tuple/tuplePolymorphism.cfa	(revision d84f2ae33ff967a0dcd536586c44e74523d30775)
@@ -66,4 +66,5 @@
 forall(T)
 [T, T] foo([T, T] y) {
+	(void) y;
 	[T, T] x;
 	return x;
Index: tests/tuple/tupleVariadic.cfa
===================================================================
--- tests/tuple/tupleVariadic.cfa	(revision fd54fef231baeeb0016103bf19cc8e6d87287faf)
+++ tests/tuple/tupleVariadic.cfa	(revision d84f2ae33ff967a0dcd536586c44e74523d30775)
@@ -98,5 +98,5 @@
 }
 
-forall(T... | { void foo(T); }) void bar(T x) {}
+forall(T... | { void foo(T); }) void bar( T ) {}
 void foo(int) {}
 
@@ -126,5 +126,5 @@
 	{
 		// T = [const int] -- this ensures that void(*)(int) satisfies void(*)(const int)
-		const int x;
+		const int x = 42;
 		bar(x);
 	}
