Index: src/tests/tuplePolymorphism.c
===================================================================
--- src/tests/tuplePolymorphism.c	(revision ba2356b7d4eb09a1a6fdad29b0b0dc5d4038829d)
+++ src/tests/tuplePolymorphism.c	(revision 17e0dc9a8c4121d3514bc10dfadb5ba5f333d893)
@@ -9,20 +9,20 @@
 // Author           : Rob Schluntz
 // Created On       : Tue Nov 16 10:38:00 2016
-// Last Modified By : Rob Schluntz
-// Last Modified On : Tue Nov 16 10:39:18 2016
-// Update Count     : 2
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Thu May 18 18:05:12 2017
+// Update Count     : 4
 //
 
 // packed is needed so that structs are not passed with the same alignment as function arguments
 __attribute__((packed)) struct A {
-  double x;
-  char y;
-  double z;
+	double x;
+	char y;
+	double z;
 };
 
 __attribute__((packed)) struct B {
-  long long x;
-  char y;
-  long long z;
+	long long x;
+	char y;
+	long long z;
 };
 
@@ -39,27 +39,27 @@
 
 int main() {
-  int x1 = 123, x3 = 456;
-  double x2 = 999.123;
+	int x1 = 123, x3 = 456;
+	double x2 = 999.123;
 
-  int i1 = 111, i3 = 222;
-  double i2 = 333;
+	int i1 = 111, i3 = 222;
+	double i2 = 333;
 
-  int d1 = 555, d3 = 444;
-  double d2 = 666;
+	int d1 = 555, d3 = 444;
+	double d2 = 666;
 
 
-  [i1, i2, i3] = ([x1, (int)x2, x3]) + ([9, 2, 3]);
-  [d1, d2, d3] = ([x1, x2, x3]) + ([9, 2, 3]);
-  printf("%d %g %d\n", i1, i2, i3);
-  printf("%d %g %d\n", d1, d2, d3);
+	[i1, i2, i3] = ([x1, (int)x2, x3]) + ([9, 2, 3]);
+	[d1, d2, d3] = ([x1, x2, x3]) + ([9, 2, 3]);
+	printf("%d %g %d\n", i1, i2, i3);
+	printf("%d %g %d\n", d1, d2, d3);
 
-  [double, double, double] zzz;
-  zzz = [x1, x2, x3];
-  printf("%g %g %g\n", zzz);
-  [x1, x2, x3] = zzz+zzz;
-  printf("%d %g %d\n", x1, x2, x3);
+	[double, double, double] zzz;
+	zzz = [x1, x2, x3];
+	printf("%g %g %g\n", zzz);
+	[x1, x2, x3] = zzz+zzz;
+	printf("%d %g %d\n", x1, x2, x3);
 
-  // ensure non-matching assertions are specialized correctly
-  g((A){ 1.21, 'x', 10.21}, (B){ 1111LL, 'v', 54385938LL });
+	// ensure non-matching assertions are specialized correctly
+	g((A){ 1.21, 'x', 10.21}, (B){ 1111LL, 'v', 54385938LL });
 }
 
@@ -73,3 +73,2 @@
 // tab-width: 4 //
 // End: //
-
