Index: src/tests/.expect/completeTypeError.txt
===================================================================
--- src/tests/.expect/completeTypeError.txt	(revision 2c57025b9dec0a2c5dae7c32ad6e1ac3ccf8f76e)
+++ src/tests/.expect/completeTypeError.txt	(revision 0f35657ae520d3e4d0fd40c5151fc45879ad5bee)
@@ -1,3 +1,9 @@
 CFA Version 1.0.0 (debug)
+Error: No reasonable alternatives for expression Applying untyped: 
+  Name: *?
+...to: 
+  Name: v
+
+
 Error: No reasonable alternatives for expression Applying untyped: 
   Name: baz
@@ -25,4 +31,10 @@
 
 Error: No reasonable alternatives for expression Applying untyped: 
+  Name: *?
+...to: 
+  Name: y
+
+
+Error: No reasonable alternatives for expression Applying untyped: 
   Name: baz
 ...to: 
Index: src/tests/completeTypeError.c
===================================================================
--- src/tests/completeTypeError.c	(revision 2c57025b9dec0a2c5dae7c32ad6e1ac3ccf8f76e)
+++ src/tests/completeTypeError.c	(revision 0f35657ae520d3e4d0fd40c5151fc45879ad5bee)
@@ -10,4 +10,5 @@
 
 	// okay
+	*i;
 	foo(i);
 	bar(i);
@@ -21,4 +22,5 @@
 
 	// bad
+	*v;
 	baz(v);
 	quux(v);
@@ -32,4 +34,5 @@
 	qux(x);
 	quux(x);
+	*x;
 }
 
@@ -43,4 +46,5 @@
 	baz(y);
 	quux(y);
+	*y;
 }
 
@@ -51,4 +55,5 @@
 	qux(z);
 	quux(z);
+	*z;
 
 	// bad
Index: src/tests/shortCircuit.c
===================================================================
--- src/tests/shortCircuit.c	(revision 2c57025b9dec0a2c5dae7c32ad6e1ac3ccf8f76e)
+++ src/tests/shortCircuit.c	(revision 0f35657ae520d3e4d0fd40c5151fc45879ad5bee)
@@ -11,7 +11,7 @@
 
 void g() {
-    int a;
-    struct { int b; } a;
-    if ( a ) {
+	int a;
+	struct { int b; } a;
+	if ( a ) {
 		while ( a ) {
 			int *b;
@@ -19,5 +19,5 @@
 			}
 		}
-    }
+	}
 }
 
